- 增加登录日志

- 增加数据库索引
- 修改原生安装文档
This commit is contained in:
dushixiang
2021-01-20 22:57:26 +08:00
parent 1d4653a561
commit f0157dbaeb
20 changed files with 700 additions and 78 deletions

View File

@ -474,20 +474,24 @@ class OfflineSession extends Component {
loading={this.state.loading}
/>
<Modal
className='monitor'
title="会话回放"
centered
visible={this.state.playbackVisible}
onCancel={this.hidePlayback}
{
this.state.playbackVisible ?
<Modal
className='monitor'
title="会话回放"
centered
visible={this.state.playbackVisible}
onCancel={this.hidePlayback}
width={window.innerWidth * 0.8}
footer={null}
destroyOnClose
maskClosable={false}
>
<Playback sessionId={this.state.playbackSessionId}/>
</Modal> : undefined
}
width={window.innerWidth * 0.8}
footer={null}
destroyOnClose
maskClosable={false}
>
<Playback sessionId={this.state.playbackSessionId}/>
</Modal>
</Content>
</>
);