Browse Source

fix:低成本没有加液和气密性

master
白凤吉 2 weeks ago
parent
commit
c83d31112d
  1. 6
      src/views/debug/index.vue

6
src/views/debug/index.vue

@ -2,11 +2,13 @@
import { sendCmd } from 'apis/system'
import { roundNumber } from 'libs/utils'
import { useDebugStore } from 'stores/debugStore'
import { useDeviceStore } from 'stores/deviceStore'
import { useHomeStore } from 'stores/homeStore'
import { ref, watchEffect } from 'vue'
const homeStore = useHomeStore()
const debugStore = useDebugStore()
const deviceStete = useDeviceStore()
const h2O2SensorData = ref<Home.DisplayrelyMgrParams[]>(homeStore.h2O2SensorData)
const sprayPumpGpmValue = ref<number>(5)
const airLeakDetectTestMode = ref<string>('disinfection')
@ -216,7 +218,7 @@ const printerDoTest = () => {
<div class="debug-lower">
<section>
<div>
<div class="debug-left-lh">
<div v-if="!deviceStete.isLowCost" class="debug-left-lh">
<div class="debug-label">
加液泵控制
</div>
@ -252,7 +254,7 @@ const printerDoTest = () => {
<bt-button button-text="关闭" @click="heatingDoClose" />
</div>
</div>
<div class="debug-left-lh">
<div v-if="!deviceStete.isLowCost" class="debug-left-lh">
<div class="debug-label">
气密性阀门模式
</div>

Loading…
Cancel
Save