Browse Source

Merge branch 'v2' of http://git.ycjcjy.com/yunzhi/crm_pc into v2

张涛 1 year ago
parent
commit
131132a5e4

+ 1
- 0
src/pages/adUser/index.jsx View File

43
         1: "已激活",
43
         1: "已激活",
44
         2: "停用",
44
         2: "停用",
45
       },
45
       },
46
+      search: false,
46
     },
47
     },
47
 
48
 
48
     {
49
     {

+ 7
- 3
src/pages/member/components/ModalNewCard.jsx View File

38
       if (modalTitle == "核销卡") {
38
       if (modalTitle == "核销卡") {
39
         // 核销卡
39
         // 核销卡
40
         putTaMemberCardIdWrite(x.cardId)
40
         putTaMemberCardIdWrite(x.cardId)
41
-          .then((result) => {})
42
-          .catch((err) => {});
41
+          .then((result) => {
42
+            setIsModalOpen(false);
43
+          })
44
+          .catch((err) => { });
43
       } else {
45
       } else {
44
         // 开卡
46
         // 开卡
45
-        postTaMemberCardIdActive(x).then((res) => {});
47
+        postTaMemberCardIdActive(x).then((res) => {
48
+          setIsModalOpen(false);
49
+        });
46
       }
50
       }
47
     });
51
     });
48
   };
52
   };

+ 1
- 1
src/pages/project/components/ProjectDeployEdit.jsx View File

21
 
21
 
22
   const onFinish = (values) => {
22
   const onFinish = (values) => {
23
     postTaProjectDeploy(values).then((res) => {
23
     postTaProjectDeploy(values).then((res) => {
24
-      navigate(`/project/edit?tab=tab2`)
24
+      navigate(`/project/project/edit?tab=tab2`)
25
     })
25
     })
26
   }
26
   }
27
   return (
27
   return (

+ 1
- 0
src/pages/project/index.jsx View File

58
       title: '项目简介',
58
       title: '项目简介',
59
       dataIndex: 'introduction',
59
       dataIndex: 'introduction',
60
       search: false,
60
       search: false,
61
+      ellipsis: true,
61
     },
62
     },
62
     {
63
     {
63
       title: '项目开始日期',
64
       title: '项目开始日期',