diff --git a/src/components/Operator.vue b/src/components/Operator.vue
index ee2085f..2040cdd 100644
--- a/src/components/Operator.vue
+++ b/src/components/Operator.vue
@@ -27,7 +27,7 @@
开始消毒
@@ -37,7 +37,11 @@
-
+
@@ -48,11 +52,22 @@ import DisinfectantLiquidInfo from 'cpns/info/DisinfectantLiquidInfo'
import EnvironmentInfo from 'cpns/info/EnvironmentInfo'
import { ref } from 'vue'
+const logVisible = ref(false)
+const logVal = ref(1)
const roomSize = ref(0)
+const changeLogVal = val => {
+ logVal.value = val
+ logVisible.value = false
+}
+
const startDisinfect = () => {
console.log('开始消毒')
}
+
+const showLogPicker = () => {
+ logVisible.value = true
+}