weichaochao hace 5 años
padre
commit
756a64c085
Se han modificado 2 ficheros con 11 adiciones y 11 borrados
  1. 10
    10
      src/pages/house/edit/components/visitRecord.jsx
  2. 1
    1
      src/pages/house/edit/index.jsx

+ 10
- 10
src/pages/house/edit/components/visitRecord.jsx Ver fichero

@@ -68,15 +68,15 @@ const header = (props) => {
68 68
       align: 'center',
69 69
       render: (x, row) => <><span>{moment(row.createDate).format('YYYY-MM-DD')}</span></>
70 70
     },
71
+    // {
72
+    //   title: '进入场景',
73
+    //   dataIndex: 'sceneName',
74
+    //   key: 'sceneName',
75
+    //   align: 'center',
76
+    //   render: (x, row) => <span>{ row.sceneName === 'mini_program_code' ? '扫码进入' : row.sceneName === 'search' ? '自主进入' : '小程序分享进入' }</span>
77
+    // },
71 78
     {
72
-      title: '进入场景',
73
-      dataIndex: 'sceneName',
74
-      key: 'sceneName',
75
-      align: 'center',
76
-      render: (x, row) => <span>{ row.sceneName === 'mini_program_code' ? '扫码进入' : row.sceneName === 'search' ? '自主进入' : '小程序分享进入' }</span>
77
-    },
78
-    {
79
-      title: '分享内容',
79
+      title: '访问内容',
80 80
       dataIndex: 'salesBatchName',
81 81
       key: 'salesBatchName',
82 82
       align: 'center',
@@ -109,7 +109,7 @@ const handleSubmit = (e, props) => {
109 109
 
110 110
     <>
111 111
       <Form layout="inline" onSubmit={e => handleSubmit(e, props)}>
112
-        <Form.Item>
112
+        {/* <Form.Item>
113 113
           {getFieldDecorator('sceneType')(
114 114
             <Select style={{ width: '180px' }} placeholder="进入场景">
115 115
               <Option value="mini_program_code">扫码进入</Option>
@@ -117,7 +117,7 @@ const handleSubmit = (e, props) => {
117 117
               <Option value="search">自主进入</Option>
118 118
             </Select>,
119 119
           )}
120
-        </Form.Item>
120
+        </Form.Item> */}
121 121
         <Form.Item>
122 122
           {getFieldDecorator('personType')(
123 123
             <Select style={{ width: '180px' }} placeholder="身份">

+ 1
- 1
src/pages/house/edit/index.jsx Ver fichero

@@ -70,7 +70,7 @@ function EditHouse(props) {
70 70
         <Radio.Button value="preselectionImg">预选热度图</Radio.Button>
71 71
         <Radio.Button value="preselectionRecord">预选记录</Radio.Button>
72 72
         <Radio.Button value="shareRecord">分享记录</Radio.Button>
73
-        <Radio.Button value="visitRecord">访问记录</Radio.Button>
73
+        <Radio.Button value="visitRecord">分享访问记录</Radio.Button>
74 74
       </Radio.Group>
75 75
       <div style={{ marginTop: '20px' }}>
76 76
         { (tab === 'base' && <Base salesBatchId={{ batchId }} onSuccess={e => buildingOnSuccess(e)}/>)}