修改地址

This commit is contained in:
yj 2025-03-10 14:38:46 +08:00
parent 3a43f75c91
commit 9924d7d14e
1 changed files with 6 additions and 1 deletions

View File

@ -2007,7 +2007,12 @@ const Meeting: React.FC = () => {
}
break;
case '会议监控':
window.open(`http://localhost:8080?uid=${Number('1' + userInfo.screenShareId)}&channel=${state.channelId}&token=${userInfo.token}`)
window.open(
location.hostname.includes('meeting-api.23544.com') ?
`http://192.168.2.9:8828?uid=${Number('1' + userInfo.screenShareId)}&channel=${state.channelId}&token=${userInfo.token}` :
`http://192.168.2.9:8828?uid=${Number('1' + userInfo.screenShareId)}&channel=${state.channelId}&token=${userInfo.token}`
)
break;
case '签到':
singInRef.current.changeModal()