267 lines
8.7 KiB
Vue
267 lines
8.7 KiB
Vue
<template>
|
||
<div class="waterPump wufang">
|
||
<div class="table-title">
|
||
<img src="../../assets/img/snowRemoval.png" alt=""> 除雪
|
||
</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>
|
||
|
||
</div>
|
||
|
||
<div class="flex-view">
|
||
<div class="input-main">
|
||
<span>一键除雪</span>
|
||
</div>
|
||
<div class="flex-sel">
|
||
<div v-if="!openTrue" class="no-sel" @click="changeOpenTrue(true)"></div>
|
||
<div v-else class="sel" ></div>
|
||
启动
|
||
</div>
|
||
<div class="flex-sel">
|
||
<div v-if="openTrue" class="no-sel" @click="changeOpenTrue(false)"></div>
|
||
<div v-else class="sel" ></div>
|
||
关闭
|
||
</div>
|
||
</div>
|
||
|
||
<div class="flex-view border-none">
|
||
<div class="input-main">
|
||
<div>除雪时间</div>
|
||
<input @blur="blurChange('21560', $event)"
|
||
v-model="inputData['21560']"
|
||
@input="change('21560', $event)"
|
||
type="text" value="60" placeholder="60" />
|
||
<span>秒</span>
|
||
</div>
|
||
<div class="input-main">
|
||
<div>打开或关闭输出通道</div>
|
||
<input @blur="blurChange('21561', $event)"
|
||
v-model="inputData['21561']"
|
||
@input="change('21561', $event)"
|
||
type="text" value="60" placeholder="60" />
|
||
<span></span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
openIndex: 1,
|
||
inputData: {},
|
||
openTrue: false,
|
||
}
|
||
},
|
||
mounted() {
|
||
this.dataInit();
|
||
//input获取焦点后全选
|
||
let inputList = document.querySelectorAll('input');
|
||
for (let index = 0; index < inputList.length; index++) {
|
||
inputList[index].onfocus = this.selectValue;//input放入焦点,全选文本
|
||
}
|
||
},
|
||
methods: {
|
||
changeOpenTrue(istrue) {
|
||
this.openTrue = istrue
|
||
var dataNum = {
|
||
target: {
|
||
value: this.openTrue ? 1 : 0,
|
||
},
|
||
};
|
||
this.changeBtn(21559, dataNum);
|
||
},
|
||
padString(str, length) {
|
||
return str.padStart(length, '0');
|
||
},
|
||
changeOpen(index) {
|
||
this.openIndex = index
|
||
var dataNum = {
|
||
target: {
|
||
value: this.openIndex,
|
||
},
|
||
};
|
||
this.changeBtn(21558, 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 data = {
|
||
deviceId: store.equipmentList[store.equipmentIndex - 1].deviceId,
|
||
|
||
};
|
||
this.api.readControl_fiveControl(data).then(res => {
|
||
console.log(res, 111);
|
||
this.inputData = res.data.data
|
||
this.openIndex = this.inputData['21558']
|
||
this.openTrue = this.inputData['21559'] == 0 ? false : true
|
||
this.inputData['21544'] = this.countData(this.inputData['21544'])
|
||
|
||
|
||
})
|
||
},
|
||
//全选文本
|
||
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>
|
||
|