commit
25be1a7ad9
|
@ -5,6 +5,7 @@ Vue.use(Vuex)
|
||||||
|
|
||||||
export default new Vuex.Store({
|
export default new Vuex.Store({
|
||||||
state: {
|
state: {
|
||||||
|
nowInput:'',
|
||||||
lateSend: 100,//写入停止后 *100毫秒进行发送 例如10*100就是1000毫秒(1s)
|
lateSend: 100,//写入停止后 *100毫秒进行发送 例如10*100就是1000毫秒(1s)
|
||||||
lateSendBtn: 10,//写入停止后 *100毫秒进行发送 例如10*100就是1000毫秒(1s)
|
lateSendBtn: 10,//写入停止后 *100毫秒进行发送 例如10*100就是1000毫秒(1s)
|
||||||
equipmentList: [],//当前账户施肥设备
|
equipmentList: [],//当前账户施肥设备
|
||||||
|
|
|
@ -161,9 +161,11 @@ export default {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
blurChange(code, el) {
|
blurChange(code, el) {
|
||||||
var store=this.$store.state
|
var store=this.$store.state
|
||||||
|
@ -204,17 +206,20 @@ selectValue(e) {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postWriteFs(data).then((res) => {
|
this.api.postWriteFs(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer=null
|
this.timer = null
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -279,6 +279,8 @@ export default {
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
|
@ -346,15 +348,18 @@ export default {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postControlWrite(data).then((res) => {
|
this.api.postControlWrite(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer = null
|
this.timer = null
|
||||||
});
|
});
|
||||||
|
|
|
@ -342,9 +342,11 @@ export default {
|
||||||
this.change(store.formulaNum[this.indexs - 1] + 2, dataSel);
|
this.change(store.formulaNum[this.indexs - 1] + 2, dataSel);
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
blurChange(code, el) {
|
blurChange(code, el) {
|
||||||
var store=this.$store.state
|
var store=this.$store.state
|
||||||
|
@ -385,18 +387,22 @@ selectValue(e) {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postWriteFs(data).then((res) => {
|
this.api.postWriteFs(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer=null
|
this.timer = null
|
||||||
});
|
});
|
||||||
|
|
||||||
},
|
},
|
||||||
tableRowClassName({ row, rowIndex }) {
|
tableRowClassName({ row, rowIndex }) {
|
||||||
if (rowIndex % 2 == 1) {
|
if (rowIndex % 2 == 1) {
|
||||||
|
|
|
@ -978,9 +978,11 @@ export default {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
blurChange10(code, el) {
|
blurChange10(code, el) {
|
||||||
var store=this.$store.state
|
var store=this.$store.state
|
||||||
|
@ -1061,17 +1063,20 @@ selectValue(e) {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postWriteFs(data).then((res) => {
|
this.api.postWriteFs(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer=null
|
this.timer = null
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleClose1(done) {
|
handleClose1(done) {
|
||||||
|
|
|
@ -389,6 +389,8 @@ return num
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
getSendData(number) {
|
getSendData(number) {
|
||||||
|
@ -499,15 +501,18 @@ return num
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postControlWrite(data).then((res) => {
|
this.api.postControlWrite(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer = null
|
this.timer = null
|
||||||
});
|
});
|
||||||
|
|
|
@ -266,9 +266,11 @@ return num
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
getSendData(number){
|
getSendData(number){
|
||||||
var number1=number
|
var number1=number
|
||||||
this.typeList.some((el, index) => {
|
this.typeList.some((el, index) => {
|
||||||
|
@ -377,17 +379,20 @@ getSendData(number){
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postWriteFs(data).then((res) => {
|
this.api.postWriteFs(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer=null
|
this.timer = null
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -355,6 +355,8 @@ export default {
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
|
@ -422,15 +424,18 @@ export default {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postControlWrite(data).then((res) => {
|
this.api.postControlWrite(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer = null
|
this.timer = null
|
||||||
});
|
});
|
||||||
|
|
|
@ -193,10 +193,10 @@ export default {
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
// this.dataInit();
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
if (this.nowSel.index != -1) {
|
if (this.nowSel.index != -1) {
|
||||||
this.timer = null
|
this.timer = null
|
||||||
|
|
|
@ -117,9 +117,11 @@ export default {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
blurChange(code, el) {
|
blurChange(code, el) {
|
||||||
var store=this.$store.state
|
var store=this.$store.state
|
||||||
|
@ -160,17 +162,20 @@ selectValue(e) {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postWriteFs(data).then((res) => {
|
this.api.postWriteFs(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer=null
|
this.timer = null
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -302,9 +302,11 @@ export default {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
blurChange(code, el) {
|
blurChange(code, el) {
|
||||||
var store=this.$store.state
|
var store=this.$store.state
|
||||||
|
@ -370,17 +372,20 @@ selectValue(e) {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postControlWrite(data).then((res) => {
|
this.api.postControlWrite(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer=null
|
this.timer = null
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
selList1(index) {
|
selList1(index) {
|
||||||
|
|
|
@ -148,9 +148,11 @@ export default {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
blurChange(code, el) {
|
blurChange(code, el) {
|
||||||
var store=this.$store.state
|
var store=this.$store.state
|
||||||
|
@ -216,17 +218,20 @@ selectValue(e) {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postWriteFs(data).then((res) => {
|
this.api.postWriteFs(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer=null
|
this.timer = null
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
selList1(index) {
|
selList1(index) {
|
||||||
|
|
|
@ -185,6 +185,8 @@ export default {
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
|
@ -252,15 +254,19 @@ export default {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
|
|
||||||
this.api.postControlWrite(data).then((res) => {
|
this.api.postControlWrite(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer = null
|
this.timer = null
|
||||||
});
|
});
|
||||||
|
|
|
@ -158,6 +158,8 @@ export default {
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
|
@ -225,15 +227,18 @@ export default {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postControlWrite(data).then((res) => {
|
this.api.postControlWrite(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer = null
|
this.timer = null
|
||||||
});
|
});
|
||||||
|
|
|
@ -275,6 +275,8 @@ return hexString;
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
|
@ -342,15 +344,18 @@ return hexString;
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postControlWrite(data).then((res) => {
|
this.api.postControlWrite(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer = null
|
this.timer = null
|
||||||
});
|
});
|
||||||
|
|
|
@ -174,6 +174,8 @@ export default {
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
|
@ -241,15 +243,18 @@ export default {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postControlWrite(data).then((res) => {
|
this.api.postControlWrite(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer = null
|
this.timer = null
|
||||||
});
|
});
|
||||||
|
|
|
@ -279,6 +279,8 @@ export default {
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
|
@ -346,15 +348,18 @@ export default {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postControlWrite(data).then((res) => {
|
this.api.postControlWrite(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer = null
|
this.timer = null
|
||||||
});
|
});
|
||||||
|
|
|
@ -169,6 +169,8 @@ export default {
|
||||||
},
|
},
|
||||||
//全选文本
|
//全选文本
|
||||||
selectValue(e) {
|
selectValue(e) {
|
||||||
|
var store = this.$store.state
|
||||||
|
store.nowInput=e.target.value
|
||||||
e.currentTarget.select();
|
e.currentTarget.select();
|
||||||
},
|
},
|
||||||
//失去焦点
|
//失去焦点
|
||||||
|
@ -236,15 +238,18 @@ export default {
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
changeData(data) {
|
changeData(data) {
|
||||||
|
var store = this.$store.state
|
||||||
this.api.postControlWrite(data).then((res) => {
|
this.api.postControlWrite(data).then((res) => {
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: res.data.msg,
|
message: res.data.msg,
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
this.dataInit();
|
store.nowInput=''
|
||||||
|
// this.dataInit();
|
||||||
} else {
|
} else {
|
||||||
this.$message.error("请求出错");
|
this.inputData[data.regAddress]=store.nowInput
|
||||||
|
this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
this.timer = null
|
this.timer = null
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue