|
@@ -155,24 +155,6 @@ let columns = [
|
155
|
155
|
dataIndex: 'activityName',
|
156
|
156
|
key: 'activityName',
|
157
|
157
|
},
|
158
|
|
- {
|
159
|
|
- title: '分享人数',
|
160
|
|
- dataIndex: 'sharePersonNum',
|
161
|
|
- key: 'sharePersonNum',
|
162
|
|
- sorter: true,
|
163
|
|
- render: (text, record) => (
|
164
|
|
- <a style={{ color: '#66B3FF' }} onClick={toSharePersonNum(record)}><span>{record.sharePersonNum}</span></a>
|
165
|
|
- ),
|
166
|
|
- },
|
167
|
|
- {
|
168
|
|
- title: '分享次数',
|
169
|
|
- dataIndex: 'shareNum',
|
170
|
|
- key: 'shareNum',
|
171
|
|
- sorter: true,
|
172
|
|
- render: (text, record) => (
|
173
|
|
- <a style={{ color: '#66B3FF' }} onClick={toShareNum(record)}><span>{record.shareNum}</span></a>
|
174
|
|
- ),
|
175
|
|
- },
|
176
|
158
|
{
|
177
|
159
|
title: '访问人数',
|
178
|
160
|
dataIndex: 'visitPersonNum',
|
|
@@ -200,6 +182,24 @@ let columns = [
|
200
|
182
|
<a style={{ color: '#66B3FF' }} onClick={toAddRegistNum(record)}><span>{record.addRegistNum}</span></a>
|
201
|
183
|
),
|
202
|
184
|
},
|
|
185
|
+ {
|
|
186
|
+ title: '分享人数',
|
|
187
|
+ dataIndex: 'sharePersonNum',
|
|
188
|
+ key: 'sharePersonNum',
|
|
189
|
+ sorter: true,
|
|
190
|
+ render: (text, record) => (
|
|
191
|
+ <a style={{ color: '#66B3FF' }} onClick={toSharePersonNum(record)}><span>{record.sharePersonNum}</span></a>
|
|
192
|
+ ),
|
|
193
|
+ },
|
|
194
|
+ {
|
|
195
|
+ title: '分享次数',
|
|
196
|
+ dataIndex: 'shareNum',
|
|
197
|
+ key: 'shareNum',
|
|
198
|
+ sorter: true,
|
|
199
|
+ render: (text, record) => (
|
|
200
|
+ <a style={{ color: '#66B3FF' }} onClick={toShareNum(record)}><span>{record.shareNum}</span></a>
|
|
201
|
+ ),
|
|
202
|
+ },
|
203
|
203
|
{
|
204
|
204
|
title: '详情',
|
205
|
205
|
align: 'center',
|
|
@@ -232,7 +232,7 @@ class OverView extends React.Component {
|
232
|
232
|
radioVal: defaultDays,
|
233
|
233
|
formData: {
|
234
|
234
|
|
235
|
|
- startDate: moment().subtract(7, 'day').toDate(),
|
|
235
|
+ startDate: moment().subtract(6, 'day').toDate(),
|
236
|
236
|
endDate: new Date,
|
237
|
237
|
buildingId: '',
|
238
|
238
|
targetType: '',
|