|
@ -504,6 +504,10 @@ const hiddenPreVisible = () => { |
|
|
// 结束消毒 |
|
|
// 结束消毒 |
|
|
const stopDisinfectStatus = () => { |
|
|
const stopDisinfectStatus = () => { |
|
|
disinfectWarnVisible.value = true |
|
|
disinfectWarnVisible.value = true |
|
|
|
|
|
// 十秒以后隐藏遮罩 |
|
|
|
|
|
setTimeout(() => { |
|
|
|
|
|
operatorStore.updateStopReady(false) |
|
|
|
|
|
}, 10000) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const hideDisinfectModal = () => { |
|
|
const hideDisinfectModal = () => { |
|
@ -559,6 +563,10 @@ const startDisinfect = () => { |
|
|
// 选择预设 而后开始消毒 |
|
|
// 选择预设 而后开始消毒 |
|
|
// preVisible.value = true |
|
|
// preVisible.value = true |
|
|
operatorStore.updateShowStartReady(true) |
|
|
operatorStore.updateShowStartReady(true) |
|
|
|
|
|
// 十秒以后隐藏遮罩 |
|
|
|
|
|
setTimeout(() => { |
|
|
|
|
|
operatorStore.updateShowStartReady(false) |
|
|
|
|
|
}, 10000) |
|
|
realStart() |
|
|
realStart() |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|