|
@@ -260,14 +260,14 @@ const UserBehavior = props => {
|
260
|
260
|
return (
|
261
|
261
|
<>
|
262
|
262
|
<div>
|
263
|
|
- <p onClick={() => router.push('/indexEcharts/userBehavior')}>
|
|
263
|
+ <p onClick={() => router.push('/indexEcharts/userBehavior')} style={{cursor: 'pointer'}}>
|
264
|
264
|
<span style={{ borderBottom: '1px solid #f02d40', color: '#333', fontSize: '0.12rem', fontWeight: '600' }}>用户行为</span>
|
265
|
265
|
{!props.BuildSelectHide && <span style={{ fontSize: '0.09rem', color: '#888', marginLeft: '0.06rem' }}>最近七天</span>}
|
266
|
266
|
</p>
|
267
|
267
|
<div style={{ float: 'right', marginTop: '-40px', marginBottom: '20px' }}>
|
268
|
268
|
{!props.BuildSelectHide && <BuildSelect slot="action" onChange={(e => handleBuildingChange(e))}></BuildSelect>}
|
269
|
269
|
</div>
|
270
|
|
- <EChart onClick={() => router.push('/indexEcharts/userBehavior')} options={options} style={style} />
|
|
270
|
+ <EChart options={options} style={style} />
|
271
|
271
|
{props.tableShow &&
|
272
|
272
|
<Table rowKey="UserBehaviorTwo" dataSource={recordList} columns={columns} pagination={false} rowKey="userbehavior" scroll={{ y: 500 }} />
|
273
|
273
|
}
|