|
@@ -193,6 +193,7 @@ class OverView extends React.Component {
|
193
|
193
|
startDate: '',
|
194
|
194
|
buildingId: [],
|
195
|
195
|
targetType: [],
|
|
196
|
+ helpVisible: false,
|
196
|
197
|
}
|
197
|
198
|
}
|
198
|
199
|
|
|
@@ -335,6 +336,10 @@ class OverView extends React.Component {
|
335
|
336
|
}, this.getAllList)
|
336
|
337
|
}
|
337
|
338
|
|
|
339
|
+ setShowHelp = (e) => {
|
|
340
|
+ console.log(e,"sssssssssssssssss")
|
|
341
|
+ this.setState({ ...this.state, helpVisible: e })
|
|
342
|
+ }
|
338
|
343
|
|
339
|
344
|
render() {
|
340
|
345
|
const { radioVal } = this.state
|
|
@@ -381,7 +386,7 @@ class OverView extends React.Component {
|
381
|
386
|
</Button>
|
382
|
387
|
<Button onClick={e => this.handleReset()} style={{ marginLeft: '30px' }}>重置</Button>
|
383
|
388
|
</Form.Item>
|
384
|
|
- <Icon type="question-circle" theme="filled" style={{ marginTop:'25px', fontSize: '25px', color: '#F00', marginLeft:'30px'}} onClick={() => setShowHelp(true)}/>
|
|
389
|
+ <Icon type="question-circle" theme="filled" style={{ marginTop:'25px', fontSize: '25px', color: '#F00', marginLeft:'30px'}} onClick={() => this.setShowHelp(true)}/>
|
385
|
390
|
|
386
|
391
|
</Form>
|
387
|
392
|
|
|
@@ -431,6 +436,40 @@ class OverView extends React.Component {
|
431
|
436
|
<Table style={{marginTop:'20px'}} dataSource={this.state.tableData} columns={columns} pagination={{ total: this.state.total}} onChange={this.handleTableChange} scroll={{ y: 500 }}></Table>
|
432
|
437
|
</div>
|
433
|
438
|
</div>
|
|
439
|
+
|
|
440
|
+ <Modal
|
|
441
|
+ title="指标说明"
|
|
442
|
+ visible={this.state.helpVisible}
|
|
443
|
+ onCancel={() => this.setShowHelp(false)}
|
|
444
|
+ footer={null}
|
|
445
|
+ >
|
|
446
|
+ <Row>
|
|
447
|
+ <p style={{ fontSize: '0.106rem', color: '#333', marginBottom: '8px' }}>分享人数:</p>
|
|
448
|
+ <p style={{ fontSize: '0.106rem', color: '#999', marginBottom: '8px' }}>分享小程序活动的总人数</p>
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+ </Row>
|
|
452
|
+ <Row>
|
|
453
|
+ <p style={{ fontSize: '0.106rem', color: '#333', marginBottom: '8px' }}>分享次数:</p>
|
|
454
|
+ <p style={{ fontSize: '0.106rem', color: '#999', marginBottom: '8px' }}>触发小程序活动分享的总次数</p>
|
|
455
|
+ </Row>
|
|
456
|
+
|
|
457
|
+ <Row>
|
|
458
|
+ <p style={{ fontSize: '0.106rem', color: '#333', marginBottom: '8px' }}>新增注册用户:</p>
|
|
459
|
+ <p style={{ fontSize: '0.106rem', color: '#999', marginBottom: '8px' }}>通过分享的活动授权手机号的总人数</p>
|
|
460
|
+ </Row>
|
|
461
|
+
|
|
462
|
+ <Row>
|
|
463
|
+ <p style={{ fontSize: '0.106rem', color: '#333', marginBottom: '8px' }}>访问人数:</p>
|
|
464
|
+ <p style={{ fontSize: '0.106rem', color: '#999', marginBottom: '8px' }}>访问小程序活动的总人数</p>
|
|
465
|
+ </Row>
|
|
466
|
+
|
|
467
|
+ <Row>
|
|
468
|
+ <p style={{ fontSize: '0.106rem', color: '#333', marginBottom: '8px' }}>访问次数:</p>
|
|
469
|
+ <p style={{ fontSize: '0.106rem', color: '#999', marginBottom: '8px' }}>访问小程序活动的总次数</p>
|
|
470
|
+ </Row>
|
|
471
|
+
|
|
472
|
+ </Modal>
|
434
|
473
|
</>
|
435
|
474
|
)
|
436
|
475
|
|