diff --git a/src/views/basic/collectPoint/timerSetting.vue b/src/views/basic/collectPoint/timerSetting.vue index 73466a21..a84927e2 100644 --- a/src/views/basic/collectPoint/timerSetting.vue +++ b/src/views/basic/collectPoint/timerSetting.vue @@ -203,13 +203,13 @@ - + @@ -236,8 +236,8 @@ - - + + @@ -245,8 +245,8 @@ - - + + @@ -369,11 +369,11 @@ export default { lastCodeSplit: true, isScanCodeCheck: true, getSplitConfirm: false, - FixedCount:null, + fixedCount:null, pdaMaxCount: null, ipcMaxCount: null, - AutoDecode:1, - OutputMode:1 + autoDecode:1, + outputMode:1, }, systemParam: null, socket:null, @@ -393,7 +393,7 @@ export default { getSet().then((response) => { if (response.code == 20000) { this.formData = response.data - // this.formData.AutoDecode = 1 + // this.formData.autoDecode = 1 // this.formData.OutputMode = 1 } }) @@ -402,7 +402,6 @@ export default { this.ShelfDisplayFlag = true }, save() { - if (isBlank(this.formData.scanMaxCount)){ this.formData.scanMaxCount = 0 } @@ -412,6 +411,15 @@ export default { if (isBlank(this.formData.ipcMaxCount)){ this.formData.ipcMaxCount = 0 } + if (isBlank(this.formData.autoDecode)){ + this.formData.autoDecode = 1 + } + if (isBlank(this.formData.fixedCount)){ + this.formData.fixedCount = 0 + } + if (isBlank(this.formData.outputMode)){ + this.formData.outputMode = 1 + } updateSet(this.formData) .then((response) => { if (response.code != 20000) { @@ -421,17 +429,40 @@ export default { }) .catch(() => { }); - if (this.socket && this.socket.readyState === WebSocket.OPEN){ - if (!isBlank(this.formData.AutoDecode)){ - var setStr = "AutoDecode=" + this.formData.AutoDecode - this.sendData(setStr) - } - if (!isBlank(this.formData.FixedCount)){ - var setStr = "FixedCount=" + this.formData.FixedCount - this.sendData(setStr) - } + + if (this.socket && this.socket.readyState === WebSocket.OPEN) { + const { autoDecode, fixedCount, outputMode } = this.formData; + + const settings = [ + { key: "AutoDecode", value: autoDecode }, + { key: "FixedCount", value: fixedCount }, + { key: "OutputMode", value: outputMode } + ]; + + settings.forEach(setting => { + if (!isBlank(setting.value)) { + const setStr = `${setting.key}=${setting.value}`; + this.sendData(setStr); + } + }); } + // if (this.socket && this.socket.readyState === WebSocket.OPEN){ + // if (!isBlank(this.formData.autoDecode)){ + // var setStr = "AutoDecode=" + this.formData.autoDecode + // this.sendData(setStr) + // } + // if (!isBlank(this.formData.fixedCount)){ + // var setStr = "FixedCount=" + this.formData.fixedCount + // this.sendData(setStr) + // } + // + // if (!isBlank(this.formData.outputMode) ){ + // var setStr = "OutputMode=" + this.formData.outputMode + // this.sendData(setStr) + // } + // + // } }, // 连接 WebSocket connectWebSocket() {