Commit 7b44cfc0 authored by liuzhaoh's avatar liuzhaoh

设备管理BUG修复

parent cad9daec
...@@ -103,12 +103,12 @@ ...@@ -103,12 +103,12 @@
<input <input
type="checkbox" type="checkbox"
checked checked
v-model="infoObj.liftValveCommunicationIp" v-model="infoObj.hasLiftValveCommunicationIp"
/> />
脉冲阀设备Y/N 通信IP 脉冲阀设备Y/N 通信IP
</label> </label>
<div style="margin-left: 10px"> <div style="margin-left: 10px">
<el-input></el-input> <el-input v-model="infoObj.liftValveCommunicationIp"></el-input>
</div> </div>
</div> </div>
<div> <div>
...@@ -170,7 +170,7 @@ let infoObj = reactive({ ...@@ -170,7 +170,7 @@ let infoObj = reactive({
faultThreshold: "", // 故障阈值 faultThreshold: "", // 故障阈值
valleyDection: "", // 谷值判定% valleyDection: "", // 谷值判定%
valveNum: "", // 阀数量 valveNum: "", // 阀数量
valveCheck: "", // 阀数量选中 hasValveNum: "", // 阀数量选中
liftValveFailure: "", // 提升阀故障 liftValveFailure: "", // 提升阀故障
onlineBackblow: false, // 在线反吹 onlineBackblow: false, // 在线反吹
fastBlow: true, // 块/慢 fastBlow: true, // 块/慢
...@@ -181,6 +181,7 @@ let infoObj = reactive({ ...@@ -181,6 +181,7 @@ let infoObj = reactive({
showEarlyWarn: true, // 显示预警 showEarlyWarn: true, // 显示预警
relateDevicesNum: "", // 关联设备 relateDevicesNum: "", // 关联设备
liftValveCommunicationIp: "", // 脉冲阀设备Y/N通信IP liftValveCommunicationIp: "", // 脉冲阀设备Y/N通信IP
hasLiftValveCommunicationIp: "", // 脉冲阀设备Y/N通信IP选中
indoorPulseBlow: "", // 室内卖出轮流喷吹 indoorPulseBlow: "", // 室内卖出轮流喷吹
liftValveDelayTime: "", // 提升阀延迟时间 liftValveDelayTime: "", // 提升阀延迟时间
}); });
...@@ -270,7 +271,7 @@ const infoEnum = reactive([ ...@@ -270,7 +271,7 @@ const infoEnum = reactive([
{ {
label: "阀数量", label: "阀数量",
propKey: "valveNum", propKey: "valveNum",
propKey2: "valveCheck", propKey2: "hasValveNum",
type: "input", type: "input",
type2: "checkbox", type2: "checkbox",
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment