|
|
@ -10,7 +10,7 @@ |
|
|
|
:formatter="formatter6" |
|
|
|
:maxlength="4" |
|
|
|
readonly |
|
|
|
@touchstart.stop="addLiquidConfigValShow = true" |
|
|
|
@touchstart.stop="hideClickKey(1)" |
|
|
|
/> |
|
|
|
</p> |
|
|
|
<div class="btn" @click="setAddliquidVal">设置</div> |
|
|
@ -25,7 +25,7 @@ |
|
|
|
:formatter="formatter7" |
|
|
|
:maxlength="4" |
|
|
|
readonly |
|
|
|
@touchstart.stop="sprayLiquidConfigValShow = true" |
|
|
|
@touchstart.stop="hideClickKey(2)" |
|
|
|
/> |
|
|
|
</p> |
|
|
|
<div class="btn" @click="setSprayLiquidVal">设置</div> |
|
|
@ -40,7 +40,7 @@ |
|
|
|
:formatter="formatter1" |
|
|
|
:maxlength="4" |
|
|
|
readonly |
|
|
|
@touchstart.stop="stoped_gsShow = true" |
|
|
|
@touchstart.stop="hideClickKey(3)" |
|
|
|
/> |
|
|
|
</p> |
|
|
|
<div class="btn" @click="setStopedGsVal">设置</div> |
|
|
@ -55,7 +55,7 @@ |
|
|
|
:maxlength="4" |
|
|
|
:formatter="formatter2" |
|
|
|
readonly |
|
|
|
@touchstart.stop="continued_gsShow = true" |
|
|
|
@touchstart.stop="hideClickKey(4)" |
|
|
|
/> |
|
|
|
</p> |
|
|
|
<div class="btn" @click="setcontinuedGsVal">设置</div> |
|
|
@ -70,7 +70,7 @@ |
|
|
|
:clickable="true" |
|
|
|
:maxlength="3" |
|
|
|
readonly |
|
|
|
@touchstart.stop="stoped_saturShow = true" |
|
|
|
@touchstart.stop="hideClickKey(5)" |
|
|
|
/> |
|
|
|
</p> |
|
|
|
<div class="btn" @click="setstopedSaturVal">设置</div> |
|
|
@ -85,7 +85,7 @@ |
|
|
|
:clickable="true" |
|
|
|
:maxlength="3" |
|
|
|
readonly |
|
|
|
@touchstart.stop="continued_saturShow = true" |
|
|
|
@touchstart.stop="hideClickKey(6)" |
|
|
|
/> |
|
|
|
</p> |
|
|
|
<div class="btn" @click="setContinuedSaturVal">设置</div> |
|
|
@ -100,12 +100,12 @@ |
|
|
|
:clickable="true" |
|
|
|
:maxlength="3" |
|
|
|
readonly |
|
|
|
@touchstart.stop="max_humidityShow = true" |
|
|
|
@touchstart.stop="hideClickKey(7)" |
|
|
|
/> |
|
|
|
</p> |
|
|
|
<div class="btn" @click="setMaxHumidityVal">设置</div> |
|
|
|
</div> |
|
|
|
<div class="row_wrap" style="margin-bottom: 20px"> |
|
|
|
<div class="row_wrap"> |
|
|
|
<p class="title">预热时间(s)</p> |
|
|
|
<p class="num"> |
|
|
|
<van-field |
|
|
@ -114,7 +114,7 @@ |
|
|
|
v-model="pre_heat_time_s" |
|
|
|
:clickable="true" |
|
|
|
readonly |
|
|
|
@touchstart.stop="pre_heat_time_sShow = true" |
|
|
|
@touchstart.stop="hideClickKey(8)" |
|
|
|
/> |
|
|
|
</p> |
|
|
|
<div class="btn" @click="setHeat_timeVal">设置</div> |
|
|
@ -199,6 +199,41 @@ const stoped_saturShow = ref(false) |
|
|
|
const continued_saturShow = ref(false) |
|
|
|
const max_humidityShow = ref(false) |
|
|
|
|
|
|
|
const hideClickKey = flag => { |
|
|
|
pre_heat_time_sShow.value = false |
|
|
|
addLiquidConfigValShow.value = false |
|
|
|
sprayLiquidConfigValShow.value = false |
|
|
|
stoped_gsShow.value = false |
|
|
|
continued_gsShow.value = false |
|
|
|
stoped_saturShow.value = false |
|
|
|
continued_saturShow.value = false |
|
|
|
max_humidityShow.value = false |
|
|
|
if (flag == 1) { |
|
|
|
addLiquidConfigValShow.value = true |
|
|
|
} |
|
|
|
if (flag == 2) { |
|
|
|
sprayLiquidConfigValShow.value = true |
|
|
|
} |
|
|
|
if (flag == 3) { |
|
|
|
stoped_gsShow.value = true |
|
|
|
} |
|
|
|
if (flag == 4) { |
|
|
|
continued_gsShow.value = true |
|
|
|
} |
|
|
|
if (flag == 5) { |
|
|
|
stoped_saturShow.value = true |
|
|
|
} |
|
|
|
if (flag == 6) { |
|
|
|
continued_saturShow.value = true |
|
|
|
} |
|
|
|
if (flag == 7) { |
|
|
|
max_humidityShow.value = true |
|
|
|
} |
|
|
|
if (flag == 8) { |
|
|
|
pre_heat_time_sShow.value = true |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
const formatter1 = value => { |
|
|
|
let arr = settingStore.allSettingList.filter(item => item.name == 'stoped_gs') |
|
|
|
if (arr && arr.length > 0) { |
|
|
@ -378,7 +413,7 @@ const setSprayLiquidVal = () => { |
|
|
|
.device_container { |
|
|
|
box-sizing: border-box; |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|
height: 580px; |
|
|
|
padding: 20px; |
|
|
|
display: grid; |
|
|
|
overflow: scroll; |
|
|
|