@@ -112,7 +115,8 @@
-
-
diff --git a/src/components/UpdatePreSetting.vue b/src/components/UpdatePreSetting.vue
new file mode 100644
index 0000000..2184b62
--- /dev/null
+++ b/src/components/UpdatePreSetting.vue
@@ -0,0 +1,737 @@
+
+
+
+
+
消毒停止过氧化氢浓度(ppm)
+
+
+
+
+
+
消毒继续过氧化氢浓度(ppm)
+
+
+
+
+
+
+
+
消毒停止过氧化氢相对饱和度(%RS)
+
+
+
+
+
+
消毒继续过氧化氢相对饱和度(%RS)
+
+
+
+
+
+
handleInput(val, 1)"
+ theme="custom"
+ close-button-text="配置"
+ @close="setAddliquidVal"
+ @blur="addLiquidConfigValShow = false"
+ />
+ handleInput(val, 2)"
+ :title="sprayLiquidConfigVal"
+ :show="sprayLiquidConfigValShow"
+ theme="custom"
+ @close="setSprayLiquidVal"
+ close-button-text="配置"
+ @blur="sprayLiquidConfigValShow = false"
+ />
+ handleInput(val, 3)"
+ :title="stoped_gs"
+ :show="stoped_gsShow"
+ theme="custom"
+ @close="setStopedGsVal"
+ close-button-text="配置"
+ @blur="stoped_gsShow = false"
+ />
+ handleInput(val, 4)"
+ :title="continued_gs"
+ @close="setcontinuedGsVal"
+ :show="continued_gsShow"
+ theme="custom"
+ close-button-text="配置"
+ @blur="continued_gsShow = false"
+ />
+ handleInput(val, 5)"
+ :title="stoped_satur"
+ @close="setstopedSaturVal"
+ :show="stoped_saturShow"
+ theme="custom"
+ close-button-text="配置"
+ @blur="stoped_saturShow = false"
+ />
+ handleInput(val, 6)"
+ :title="continued_satur"
+ @close="setContinuedSaturVal"
+ :show="continued_saturShow"
+ theme="custom"
+ close-button-text="配置"
+ @blur="continued_saturShow = false"
+ />
+ handleInput(val, 7)"
+ :title="max_humidity"
+ @close="setMaxHumidityVal"
+ :show="max_humidityShow"
+ theme="custom"
+ close-button-text="配置"
+ @blur="max_humidityShow = false"
+ />
+ handleInput(val, 8)"
+ @close="setHeat_timeVal"
+ v-model="pre_heat_time_s"
+ :title="pre_heat_time_s"
+ :show="pre_heat_time_sShow"
+ @blur="pre_heat_time_sShow = false"
+ />
+ handleInput(val, 9)"
+ theme="custom"
+ close-button-text="配置"
+ @close="setstoped_humiVal"
+ v-model="stoped_humi"
+ :title="stoped_humi"
+ :show="stoped_humiShow"
+ @blur="stoped_humiShow = false"
+ />
+ handleInput(val, 10)"
+ close-button-text="配置"
+ @close="setcontinued_humiVal"
+ v-model="continued_humi"
+ :title="continued_humi"
+ :show="continued_humiShow"
+ @blur="continued_humiShow = false"
+ />
+
+
+
+
+
+
+
+
diff --git a/src/mock/command.js b/src/mock/command.js
index 6b337d2..2be236d 100644
--- a/src/mock/command.js
+++ b/src/mock/command.js
@@ -269,27 +269,11 @@ export const delFormulaJSON = id => {
}
// 添加配方 是不是少了log
-export const addFormulaJSON = (
- formula_id,
- stoped_gs,
- continued_gs,
- stoped_satur,
- continued_satur,
- stoped_humi,
- continued_humi,
- injection_pump_speed,
-) => {
+export const addFormulaJSON = data => {
return {
command: 'addFormula',
messageId: 'addFormula',
- formula_id,
- stoped_gs,
- continued_gs,
- stoped_satur,
- continued_satur,
- stoped_humi,
- continued_humi,
- injection_pump_speed,
+ ...data,
}
}