dingxin 5 lat temu
rodzic
commit
e873b89bf3

+ 1
- 1
src/pages/activity/ActivityList.jsx Wyświetl plik

@@ -133,7 +133,7 @@ const header = props => {
133 133
       render: (x, row) => (
134 134
         <>
135 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 137
           </AuthButton>
138 138
           <AuthButton name="admin.buildingDynamic.send.dynamicId.put" noRight={null}>
139 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 Wyświetl plik

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

+ 1
- 1
src/pages/carouselFigure/editCarousel.jsx Wyświetl plik

@@ -102,7 +102,7 @@ const { MonthPicker, RangePicker, WeekPicker } = DatePicker;
102 102
             value: 'index',
103 103
           },
104 104
           {
105
-            label: '商城',
105
+            label: '积分商城',
106 106
             value: 'mall',
107 107
           }],
108 108
           value: data.showPosition,

+ 2
- 1
src/pages/customer/independentList/index.jsx Wyświetl plik

@@ -388,12 +388,13 @@ function body (props) {
388 388
       title: '类型',
389 389
       dataIndex: 'personType',
390 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 394
       title: '所属渠道',
395 395
       dataIndex: 'channelName',
396 396
       key: 'channelName',
397
+      render: (_, record) => <><span>{record.personType === 'channel agent' ? record.channelName : ''}</span></>,
397 398
     },
398 399
     {
399 400
       title: '操作',

+ 1
- 1
src/pages/system/document/audit.jsx Wyświetl plik

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