Browse Source

文案提示

魏超 5 years ago
parent
commit
6cd2d43c0e
1 changed files with 8 additions and 6 deletions
  1. 8
    6
      src/pages/carouselFigure/advertisingList.jsx

+ 8
- 6
src/pages/carouselFigure/advertisingList.jsx View File

@@ -68,8 +68,8 @@ const header = (props) => {
68 68
       dataIndex: 'contentType',
69 69
       key: 'contentType',
70 70
       align: 'center',
71
-      render: (contentType) => <span>{contentType === 'project' ? '项目' : contentType === 'activity' ? '活动' : contentType === 'news' ? '资讯' : contentType === 'other' ? '其他' :
72
-        contentType === 'help' ? '助力' : contentType === 'group' ? '拼团' : contentType === 'h5' ? 'H5活动' : contentType === 'salesBatch' ? '销售批次详情' : contentType === 'live' ? '直播活动详情' : '无'}</span>
71
+      render: (contentType) => <span>{contentType === 'project' ? '项目' : contentType === 'activity' ? '报名活动' : contentType === 'news' ? '资讯' : contentType === 'other' ? '其他' :
72
+        contentType === 'help' ? '助力活动' : contentType === 'group' ? '拼团活动' : contentType === 'h5' ? 'H5活动' : contentType === 'salesBatch' ? '在线选房' : contentType === 'live' ? '直播活动' : '无'}</span>
73 73
     },
74 74
     {
75 75
       title: '发布位置',
@@ -232,12 +232,14 @@ const header = (props) => {
232 232
         <Form.Item>
233 233
           {getFieldDecorator('contentType')(
234 234
             <Select style={{ width: '180px' }} placeholder="类型">
235
-              <Option value="activity">活动</Option>
236 235
               <Option value="project">项目</Option>
237 236
               <Option value="news">资讯</Option>
238
-              <Option value="help">助力</Option>
239
-              <Option value="group">拼团</Option>
240
-              <Option value="h5">H5</Option>
237
+              <Option value="activity">报名活动</Option>
238
+              <Option value="help">助力活动</Option>
239
+              <Option value="group">拼团活动</Option>
240
+              <Option value="h5">H5活动</Option>
241
+              <Option value="live">直播活动</Option>
242
+              <Option value="salesBatch">在线选房</Option>
241 243
               <Option value="nothing">无</Option>
242 244
             </Select>,
243 245
           )}