修复bug-agentNumber

This commit is contained in:
unknown
2022-05-13 10:01:33 +08:00
parent b9f054b8f2
commit baec521f7c
2 changed files with 5 additions and 5 deletions

View File

@ -321,8 +321,8 @@ class manager extends PureComponent {
this.setState({kfType: 2})
this.setState({projectModal: true})
}}
openWin={()=>{
this.setState({kfType: 1})
openWin={(index)=>{
this.setState({kfType: index})
this.setState({optionsModal: false})
this.setState({isModalVisible: true})
this.setState({isCloseWs: false})

View File

@ -292,7 +292,7 @@ const getProject = (params)=>{
}
])
closeProjectModal && closeProjectModal()
openWin && openWin()
openWin && openWin(2)
}}
okText="确定"
cancelText="取消"
@ -396,8 +396,8 @@ const getProject = (params)=>{
<Modal title="请选择您要咨询的客服类型" visible={optionsModal} footer={null} onCancel={()=>{
closeOptionsModal && closeOptionsModal()
}}>
<p><a href="#" onClick={()=> openWin && openWin()}>点击咨询平台客服</a>平台操作相关问题</p>
<p><a href="#" onClick={()=> openWin && openWin()}>点击咨询智慧安全公司客服</a>iPASS及电子签章相关问题</p>
<p><a href="#" onClick={()=> openWin && openWin(1)}>点击咨询平台客服</a>平台操作相关问题</p>
<p><a href="#" onClick={()=> openWin && openWin(1)}>点击咨询智慧安全公司客服</a>iPASS及电子签章相关问题</p>
<p><a href="#" onClick={()=> openProjectWin && openProjectWin()}>点击咨询代理机构客服</a>项目内容相关问题</p>
</Modal>
}