yangjie #35

Merged
yangqiang merged 8 commits from yangjie into master 2024-11-13 10:41:16 +08:00
2 changed files with 9 additions and 0 deletions
Showing only changes of commit ec8ec8d9cb - Show all commits

View File

@ -164,6 +164,7 @@ const App: React.FC = () => {
if (location.href.indexOf('/login') !== -1) { if (location.href.indexOf('/login') !== -1) {
window.electron.onStop() window.electron.onStop()
} }
message.destroy('cameraTemporarily')
}, [navigate]) }, [navigate])
} }
useEffect(() => { useEffect(() => {

View File

@ -1060,6 +1060,14 @@ const Meeting: React.FC = () => {
} }
return bool return bool
}) })
} else if (reason === 3 || reason === 4) {
message.error({
content: <div> <span style={{ color: '#606fc7', cursor: 'pointer' }} onClick={() => {
stupWizardRef.current.changeModal(1);
}}></span></div>,
duration: 60,
key: 'cameraTemporarily'
});
} }
} }
}) })