瀏覽代碼

Merge branch 'master' of http://git.ycjcjy.com/zhiyuxing/estateagents-admin-manager

许静 5 年之前
父節點
當前提交
d0e9e1d000
共有 3 個文件被更改,包括 22 次插入3 次删除
  1. 2
    1
      config/routes.js
  2. 19
    1
      src/pages/activity/SignList.jsx
  3. 1
    1
      src/pages/integralMall/exchangeRecords.jsx

+ 2
- 1
config/routes.js 查看文件

@@ -142,7 +142,8 @@ export default [
142 142
               },
143 143
               {
144 144
                 path: '/integralMall/editAchieve',
145
-                name: '积分获取',
145
+                name: '积分编辑',
146
+                hideInMenu: true,
146 147
                 component: './integralMall/editAchieve',
147 148
               },
148 149
               {

+ 19
- 1
src/pages/activity/SignList.jsx 查看文件

@@ -30,13 +30,31 @@ const columns = [
30 30
     key: 'phone',
31 31
     align: 'center',
32 32
   },
33
+  {
34
+    title: '参与人数',
35
+    dataIndex: 'attendNum',
36
+    key: 'attendNum',
37
+    align: 'center',
38
+  },
33 39
   {
34 40
     title: '报名时间',
35 41
     dataIndex: 'createDate',
36 42
     key: 'createDate',
37 43
     align: 'center',
38 44
     render: (x, row) => <><span>{`${moment(row.createDate).format('YYYY-MM-DD')}`}</span></>
39
-  }
45
+  },
46
+  {
47
+    title: '推广人',
48
+    dataIndex: 'sharePersonName',
49
+    key: 'sharePersonName',
50
+    align: 'center',
51
+  },
52
+  {
53
+    title: '公司',
54
+    dataIndex: 'orgName',
55
+    key: 'orgName',
56
+    align: 'center',
57
+  },
40 58
 ];
41 59
 
42 60
 

+ 1
- 1
src/pages/integralMall/exchangeRecords.jsx 查看文件

@@ -164,7 +164,7 @@ function record(props) {
164 164
             {getFieldDecorator('personType')(
165 165
               <Select style={{ minWidth: '1.1rem' }} placeholder="用户类型">
166 166
                 <Option value="Realty Consultant">置业顾问</Option>
167
-                <Option value="Sales Executive">销售主管</Option>
167
+                <Option value="customer">客户</Option>
168 168
                 <Option value="estate agent">经纪人</Option>
169 169
               </Select>,
170 170
             )}