338 lines
9.3 KiB
Vue
338 lines
9.3 KiB
Vue
<template>
|
||
<div class="waterPump wufang">
|
||
<div class="table-title">
|
||
<img src="../../assets/img/downtake.png" alt="" /> 下风口
|
||
<div @click="changeOpen(0)" class="flex-view border-none">
|
||
<div :class="openIndex == 0 ? 'sel' : 'no-sel'"></div>
|
||
有效性
|
||
</div>
|
||
</div>
|
||
<div class="title-tips">下风口有效性设置</div>
|
||
<div class="flex-view">
|
||
<div class="input-btn">
|
||
<div
|
||
class="btn"
|
||
@click="changeOpen(1)"
|
||
:class="openIndex == 1 ? 'blue' : 'green'"
|
||
>
|
||
<img src="../../assets/image/irrigateSet2.png" alt="" />自动运行
|
||
</div>
|
||
<div
|
||
class="btn"
|
||
@click="changeOpen(2)"
|
||
:class="openIndex == 2 ? 'blue' : 'green'"
|
||
>
|
||
<img src="../../assets/image/irrigateSet3.png" alt="" />手动打开
|
||
</div>
|
||
<div
|
||
class="btn"
|
||
@click="changeOpen(3)"
|
||
:class="openIndex == 3 ? 'blue' : 'green'"
|
||
>
|
||
<img src="../../assets/image/irrigateSet1.png" alt="" />手动关闭
|
||
</div>
|
||
<div
|
||
class="btn"
|
||
@click="changeOpen(4)"
|
||
:class="openIndex == 4 ? 'blue' : 'green'"
|
||
>
|
||
<img src="../../assets/image/irrigateSet1.png" alt="" />停止
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="flex-view">
|
||
<div class="flex-sel padding-none" @click="changeOpenTrue()">
|
||
<div v-if="!openTrue" class="no-sel margin-none"></div>
|
||
<div v-else class="sel margin-none"></div>
|
||
</div>
|
||
<div class="input-main">
|
||
<span>室外温度大于</span>
|
||
<input
|
||
@blur="blurChangeCount('21544', $event)"
|
||
v-model="inputData['21544']"
|
||
@input="changeCountData('21544', $event)"
|
||
type="text"
|
||
value="60"
|
||
placeholder="60"
|
||
/>
|
||
<span>℃,打开下风口</span>
|
||
</div>
|
||
</div>
|
||
<div class="flex-view">
|
||
<div class="input-main">
|
||
<div>上风口全部打开 (100%) 时</div>
|
||
<input
|
||
@blur="blurChange('21543', $event)"
|
||
v-model="inputData['21543']"
|
||
@input="change('21543', $event)"
|
||
type="text"
|
||
value="60"
|
||
placeholder="60"
|
||
/>
|
||
<span>分钟温度降不下来,打开下风口</span>
|
||
</div>
|
||
</div>
|
||
<div class="flex-view border-none">
|
||
<div class="input-main">
|
||
<div>下风口的行程时间</div>
|
||
<input
|
||
@blur="blurChange('21545', $event)"
|
||
v-model="inputData['21545']"
|
||
@input="change('21545', $event)"
|
||
type="text"
|
||
value="60"
|
||
placeholder="60"
|
||
/>
|
||
<span>秒</span>
|
||
</div>
|
||
<div class="input-main">
|
||
<div>打开的通道</div>
|
||
<input
|
||
@blur="blurChange('21546', $event)"
|
||
v-model="inputData['21546']"
|
||
@input="change('21546', $event)"
|
||
type="text"
|
||
value="60"
|
||
placeholder="60"
|
||
/>
|
||
<span></span>
|
||
</div>
|
||
<div class="input-main">
|
||
<div>关闭的通道</div>
|
||
<input
|
||
@blur="blurChange('21547', $event)"
|
||
v-model="inputData['21547']"
|
||
@input="change('21547', $event)"
|
||
type="text"
|
||
value="60"
|
||
placeholder="60"
|
||
/>
|
||
<span></span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
openIndex: 1,
|
||
inputData: {},
|
||
openTrue: false,
|
||
};
|
||
},
|
||
mounted() {
|
||
var store = this.$store.state;
|
||
// this.dataInit();
|
||
if(store.ControlData){
|
||
this.dataInit();
|
||
}
|
||
let inputList = document.querySelectorAll("input");
|
||
for (let index = 0; index < inputList.length; index++) {
|
||
inputList[index].onfocus = this.selectValue; //input放入焦点,全选文本
|
||
}
|
||
},
|
||
//如果接口还未调通 跳转到页面后 监听到数据变化就触发数据读取
|
||
watch: {
|
||
"$store.state.ControlData"(newVal) {
|
||
this.dataInit();
|
||
},
|
||
},
|
||
// 当前页面关闭前将数据存入vuex
|
||
beforeDestroy() {
|
||
var store = this.$store.state;
|
||
this.inputData["21541"]= this.openIndex;
|
||
this.inputData["21542"] = this.openTrue ? 1 : 0;
|
||
store.ControlData = this.inputData;
|
||
},
|
||
methods: {
|
||
changeOpenTrue() {
|
||
this.openTrue = !this.openTrue;
|
||
var dataNum = {
|
||
target: {
|
||
value: this.openTrue ? 1 : 0,
|
||
},
|
||
};
|
||
this.changeBtn("21542", dataNum);
|
||
},
|
||
padString(str, length) {
|
||
return str.padStart(length, "0");
|
||
},
|
||
changeOpen(index) {
|
||
this.openIndex = index;
|
||
var dataNum = {
|
||
target: {
|
||
value: this.openIndex,
|
||
},
|
||
};
|
||
this.changeBtn(21541, dataNum);
|
||
},
|
||
//失去焦点 计算公式 x/10
|
||
blurChange10(code, el) {
|
||
var store = this.$store.state;
|
||
var data = {
|
||
equipmentId: store.equipmentList[store.equipmentIndex - 1].deviceId,
|
||
regAddress: code,
|
||
num: el.target.value * 10,
|
||
}; //避免开启多个计时器
|
||
if (this.timer) {
|
||
this.timer && clearInterval(this.timer);
|
||
this.changeData(data);
|
||
}
|
||
},
|
||
//反向计算 计算公式 x/10
|
||
changeCount10(code, el) {
|
||
var data = el.target.value * 10;
|
||
var sendData = {
|
||
target: {
|
||
value: data,
|
||
},
|
||
};
|
||
this.change(code, sendData);
|
||
},
|
||
//失去焦点
|
||
blurChangeCount(code, el) {
|
||
var store = this.$store.state;
|
||
var data = {
|
||
equipmentId: store.equipmentList[store.equipmentIndex - 1].deviceId,
|
||
regAddress: code,
|
||
num: el.target.value * 10 + 400,
|
||
}; //避免开启多个计时器
|
||
if (this.timer) {
|
||
this.timer && clearInterval(this.timer);
|
||
this.changeData(data);
|
||
}
|
||
},
|
||
changeCountData(code, el) {
|
||
var data = el.target.value * 10 + 400;
|
||
var sendData = {
|
||
target: {
|
||
value: data,
|
||
},
|
||
};
|
||
this.change(code, sendData);
|
||
},
|
||
countData(data) {
|
||
if (data) {
|
||
return (data - 400) / 10;
|
||
} else {
|
||
return 0;
|
||
}
|
||
},
|
||
// 计算展示值 计算公式 x/10
|
||
countData10(data) {
|
||
if (data) {
|
||
return data / 10;
|
||
} else {
|
||
return 0;
|
||
}
|
||
},
|
||
dataInit() {
|
||
var store = this.$store.state;
|
||
var store = this.$store.state
|
||
this.inputData = store.ControlData
|
||
this.openIndex = this.inputData["21541"];
|
||
this.openTrue = this.inputData["21542"] == 0 ? false : true;
|
||
// this.inputData["21544"] = this.countData(this.inputData["21544"]);
|
||
// var data = {
|
||
// deviceId: store.equipmentList[store.equipmentIndex - 1].deviceId,
|
||
// };
|
||
// this.api.readControl_fiveControl(data).then((res) => {
|
||
// if (res.data.code == 200) {
|
||
|
||
// }
|
||
// });
|
||
},
|
||
//全选文本
|
||
selectValue(e) {
|
||
var store = this.$store.state;
|
||
store.nowInput = e.target.value;
|
||
e.currentTarget.select();
|
||
},
|
||
//失去焦点
|
||
blurChange(code, el) {
|
||
var store = this.$store.state;
|
||
var data = {
|
||
equipmentId: store.equipmentList[store.equipmentIndex - 1].deviceId,
|
||
regAddress: code,
|
||
num: el.target.value,
|
||
}; //避免开启多个计时器
|
||
if (this.timer) {
|
||
this.timer && clearInterval(this.timer);
|
||
this.changeData(data);
|
||
}
|
||
},
|
||
changeBtn(code, el) {
|
||
var store = this.$store.state;
|
||
var data = {
|
||
equipmentId: store.equipmentList[store.equipmentIndex - 1].deviceId,
|
||
regAddress: code,
|
||
num: el.target.value,
|
||
};
|
||
this.delayTimerBtn(0, data);
|
||
},
|
||
//切换btn的限制 写入停止后j*100毫秒调取函数
|
||
delayTimerBtn(i, data) {
|
||
const that = this;
|
||
//整体接口
|
||
let j = this.$store.state.lateSendBtn;
|
||
//避免开启多个计时器
|
||
this.timer && clearInterval(this.timer);
|
||
|
||
this.timer = setInterval(() => {
|
||
++i;
|
||
if (i == j) {
|
||
that.changeData(data);
|
||
clearInterval(this.timer);
|
||
}
|
||
}, 100);
|
||
},
|
||
change(code, el) {
|
||
var store = this.$store.state;
|
||
var data = {
|
||
equipmentId: store.equipmentList[store.equipmentIndex - 1].deviceId,
|
||
regAddress: code,
|
||
num: el.target.value,
|
||
};
|
||
this.delayTimer(0, data);
|
||
},
|
||
//限制 写入停止后j*100毫秒调取函数
|
||
delayTimer(i, data) {
|
||
const that = this;
|
||
//整体接口
|
||
let j = this.$store.state.lateSend;
|
||
//避免开启多个计时器
|
||
this.timer && clearInterval(this.timer);
|
||
|
||
this.timer = setInterval(() => {
|
||
++i;
|
||
if (i == j) {
|
||
that.changeData(data);
|
||
clearInterval(this.timer);
|
||
}
|
||
}, 100);
|
||
},
|
||
changeData(data) {
|
||
var store = this.$store.state;
|
||
|
||
this.api.postControlWrite(data).then((res) => {
|
||
if (res.data.code == 200) {
|
||
this.$message({
|
||
message: res.data.msg,
|
||
type: "success",
|
||
});
|
||
store.nowInput = "";
|
||
// this.dataInit();
|
||
} else {
|
||
this.inputData[data.regAddress] = store.nowInput;
|
||
this.$message.error(res.data.msg);
|
||
}
|
||
this.timer = null;
|
||
});
|
||
},
|
||
},
|
||
};
|
||
</script>
|
||
<style lang="scss"></style>
|
||
|