dingxin 5 anos atrás
pai
commit
e873b89bf3

+ 1
- 1
src/pages/activity/ActivityList.jsx Ver arquivo

133
       render: (x, row) => (
133
       render: (x, row) => (
134
         <>
134
         <>
135
           <AuthButton name="admin.SignList.get" noRight={null}>
135
           <AuthButton name="admin.SignList.get" noRight={null}>
136
-            <span style={{ color: '#1990FF', cursor: 'pointer' }} onClick={getSignList.bind(this, row.dynamicId)}>{row.isEnlist == '1' || row.isEnlist == '2' ? '报名记录' : ''}<Icon type="snippets" className={styles.shoppingCart} /></span>
136
+            <span style={{ color: '#1990FF', cursor: 'pointer' }} onClick={getSignList.bind(this, row.dynamicId)}>{row.isEnlist == '1' || row.isEnlist == '2' ? '报名记录' : ''}{ (row.isEnlist==1||row.isEnlist==2)  && <Icon type="snippets" className={styles.shoppingCart} />}</span>
137
           </AuthButton>
137
           </AuthButton>
138
           <AuthButton name="admin.buildingDynamic.send.dynamicId.put" noRight={null}>
138
           <AuthButton name="admin.buildingDynamic.send.dynamicId.put" noRight={null}>
139
             {row.activityStatus != 0 && <span style={{ color: '#1990FF', cursor: 'pointer' }} onClick={sendOrPublicDynamic.bind(this, row)}>{row.status === 1 ? '取消发布' : '发布'}<Icon type="close-circle" className={styles.edit} /></span>}
139
             {row.activityStatus != 0 && <span style={{ color: '#1990FF', cursor: 'pointer' }} onClick={sendOrPublicDynamic.bind(this, row)}>{row.status === 1 ? '取消发布' : '发布'}<Icon type="close-circle" className={styles.edit} /></span>}

+ 1
- 1
src/pages/carouselFigure/carouselFigureList.jsx Ver arquivo

192
         <Form.Item>
192
         <Form.Item>
193
           {getFieldDecorator('showPosition')(
193
           {getFieldDecorator('showPosition')(
194
             <Select style={{ width: '180px' }} placeholder="发布位置">
194
             <Select style={{ width: '180px' }} placeholder="发布位置">
195
-              <Option value="mall">商城</Option>
195
+              <Option value="mall">积分商城</Option>
196
               <Option value="index">首页</Option>
196
               <Option value="index">首页</Option>
197
             </Select>,
197
             </Select>,
198
           )}
198
           )}

+ 1
- 1
src/pages/carouselFigure/editCarousel.jsx Ver arquivo

102
             value: 'index',
102
             value: 'index',
103
           },
103
           },
104
           {
104
           {
105
-            label: '商城',
105
+            label: '积分商城',
106
             value: 'mall',
106
             value: 'mall',
107
           }],
107
           }],
108
           value: data.showPosition,
108
           value: data.showPosition,

+ 2
- 1
src/pages/customer/independentList/index.jsx Ver arquivo

388
       title: '类型',
388
       title: '类型',
389
       dataIndex: 'personType',
389
       dataIndex: 'personType',
390
       key: 'personType',
390
       key: 'personType',
391
-      render: (_, record) => <><span>{record.channelName !== null ? '渠道经纪人' : '独立经纪人'}</span></>,
391
+      render: (_, record) => <><span>{record.personType === 'channel agent' ? '渠道经纪人' : '独立经纪人'}</span></>,
392
     },
392
     },
393
     {
393
     {
394
       title: '所属渠道',
394
       title: '所属渠道',
395
       dataIndex: 'channelName',
395
       dataIndex: 'channelName',
396
       key: 'channelName',
396
       key: 'channelName',
397
+      render: (_, record) => <><span>{record.personType === 'channel agent' ? record.channelName : ''}</span></>,
397
     },
398
     },
398
     {
399
     {
399
       title: '操作',
400
       title: '操作',

+ 1
- 1
src/pages/system/document/audit.jsx Ver arquivo

48
       cancelText: '取消',
48
       cancelText: '取消',
49
       onOk () {
49
       onOk () {
50
 
50
 
51
-        onVerify(2)
51
+        onVerify(1)
52
       }
52
       }
53
     });
53
     });
54
   }
54
   }