Compare commits
No commits in common. "c5e71e6e7bbed2011a9c1f8bd8539bb91d4099fb" and "f75ab621d21ca94dba3db4875f4c21eab526f0d1" have entirely different histories.
c5e71e6e7b
...
f75ab621d2
|
@ -714,9 +714,8 @@ const closeDialog = () => {
|
|||
|
||||
// im监听消息回调
|
||||
const msgHandle = (msg) => {
|
||||
if (typeof msg === 'object'){
|
||||
const { head, content, ...other } = msg
|
||||
switch(head) {
|
||||
const { type, data } = msg
|
||||
switch(type) {
|
||||
case MsgEnum.HEADS.MSG_closed: // 下课:
|
||||
window.close() // 关闭窗口
|
||||
break
|
||||
|
@ -747,7 +746,6 @@ const msgHandle = (msg) => {
|
|||
// }
|
||||
// break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const reloadTimer = ref(0); // 开启定时查询,作业id是否刷新了,刷新了就重新获取
|
||||
|
|
Loading…
Reference in New Issue