2/14 高拍仪设置1.0

20240912_adapter
wangwei 2 months ago
parent 49d640c56e
commit dff3031ebe

@ -186,6 +186,79 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<!--<el-row :gutter="20" style="margin-top: 20px">-->
<!-- <el-col :span="8" class="el-col">-->
<!-- <el-form-item label="是否手动解码:" prop="scanMaxCount" style="margin-bottom: 0">-->
<!-- <el-radio-group v-model="formData.isAutoCodec">-->
<!-- <el-radio :label="true"></el-radio>-->
<!-- <el-radio :label="false"></el-radio>-->
<!-- </el-radio-group>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!--</el-row>-->
</el-collapse-item>
<el-collapse-item name="4">
<template slot="title">
<p class="form-title">高拍仪扫码设置</p>
</template>
<el-row :gutter="20">
<el-col :span="8" class="el-col">
<el-form-item label="扫码数量设置:" prop="scanMaxCount" style="margin-bottom: 0">
<el-input
style="width: 90%"
size="small"
type='number'
splaceholder="请输入内容"
v-model="formData.FixedCount"
></el-input>
</el-form-item>
</el-col>
<!--<el-col :span="8" class="el-col">-->
<!-- <el-form-item label="PAD扫码数量设置:" prop="pdaMaxCount" style="margin-bottom: 0">-->
<!-- <el-input-->
<!-- style="width: 90%"-->
<!-- size="small"-->
<!-- type='number'-->
<!-- splaceholder="请输入内容"-->
<!-- v-model="formData.pdaMaxCount"-->
<!-- ></el-input>-->
<!-- </el-form-item>-->
<!--</el-col>-->
<!--<el-col :span="8" class="el-col">-->
<!-- <el-form-item label="工控扫码数量设置:" prop="ipcMaxCount" style="margin-bottom: 0">-->
<!-- <el-input-->
<!-- style="width: 90%"-->
<!-- size="small"-->
<!-- type='number'-->
<!-- splaceholder="请输入内容"-->
<!-- v-model="formData.ipcMaxCount"-->
<!-- ></el-input>-->
<!-- </el-form-item>-->
<!--</el-col>-->
<el-col :span="8" class="el-col">
<el-form-item label="是否自动解码:" prop="AutoDecode" style="margin-bottom: 0">
<el-select v-model="formData.AutoDecode" placeholder="选择是否自动解码">
<el-option label="否" :value="0"></el-option>
<el-option label="是" :value="1"></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="8" class="el-col">
<el-form-item label="输出顺序:" prop="OutputMode" >
<el-select v-model="formData.OutputMode" placeholder="选择输出顺序">
<el-option label="不排序" :value="0"></el-option>
<el-option label="从左到右" :value="1"></el-option>
<el-option label="从右到左" :value="2"></el-option>
<el-option label="从上到下" :value="3"></el-option>
<el-option label="从下到上" :value="4"></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20" style="margin-top: 20px">
</el-row>
</el-collapse-item> </el-collapse-item>
</el-collapse> </el-collapse>
@ -204,8 +277,6 @@
> >
</ShelfDisplay> </ShelfDisplay>
</el-dialog> </el-dialog>
</el-form> </el-form>
</el-card> </el-card>
</div> </div>
@ -298,11 +369,14 @@ export default {
lastCodeSplit: true, lastCodeSplit: true,
isScanCodeCheck: true, isScanCodeCheck: true,
getSplitConfirm: false, getSplitConfirm: false,
scanMaxCount:null, FixedCount:null,
pdaMaxCount: null, pdaMaxCount: null,
ipcMaxCount: null, ipcMaxCount: null,
AutoDecode:1,
OutputMode:1
}, },
systemParam: null, systemParam: null,
socket:null,
} }
}, },
@ -319,6 +393,8 @@ export default {
getSet().then((response) => { getSet().then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.formData = response.data this.formData = response.data
// this.formData.AutoDecode = 1
// this.formData.OutputMode = 1
} }
}) })
}, },
@ -345,13 +421,73 @@ export default {
}) })
.catch(() => { .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)
}
}
},
// WebSocket
connectWebSocket() {
// WebSocket
// WebSocket
this.socket = new WebSocket('ws://127.0.0.1:9988')
//
this.socket.onopen = () => {
console.log("WebSocket connected!");
};
//
this.socket.onmessage = (event) => {
this.receivedMessage = event.data; //
console.log("Received message:", event.data);
};
//
this.socket.onerror = (error) => {
console.error("WebSocket error:", error);
};
//
this.socket.onclose = () => {
console.log("WebSocket connection closed.");
};
},
//
sendData(data) {
if (this.socket && this.socket.readyState === WebSocket.OPEN) {
// const data = JSON.stringify({ action: "subscribe", channel: "updates" }); //
this.socket.send(data); //
console.log("Data sent:", data);
} else {
console.error("WebSocket is not connected.");
}
},
},
mounted() {
// WebSocket
this.connectWebSocket();
}, },
created() { created() {
this.selectSysParam() this.selectSysParam()
},
beforeDestroy() {
// WebSocket
if (this.socket) {
this.socket.close();
console.log("WebSocket connection closed in beforeDestroy.");
}
} }
} }
</script> </script>

@ -19,7 +19,11 @@
<el-button-group <el-button-group
style="display: flex; margin-top: 5px; float: right" style="display: flex; margin-top: 5px; float: right"
> >
<el-button size="mini" type="primary" @click.native="paizhao()" :loading="submitLoading"
v-if="splitType=='out' && !redMesg" style="margin-right: 8px;border-radius: 5%;"
v-show="isLinkDisabled"
>拍照解码
</el-button>
<el-button size="mini" type="primary" @click.native="deleteCode" :loading="submitLoading" <el-button size="mini" type="primary" @click.native="deleteCode" :loading="submitLoading"
v-if="splitType=='out' && labelName == 1" style="margin-right: 8px;border-radius: 5%;" v-if="splitType=='out' && labelName == 1" style="margin-right: 8px;border-radius: 5%;"
v-show="isLinkDisabled" :disabled="orderFormData.billNo == null" v-show="isLinkDisabled" :disabled="orderFormData.billNo == null"
@ -699,7 +703,8 @@ export default {
fifoSplit: 1 fifoSplit: 1
} }
this.orderFormData.workPlaceCode = tempData.workPlaceCode this.orderFormData.workPlaceCode = tempData.workPlaceCode
this.orderFormData.workPlaceQueueCode = tempData.workPlaceQueueCode //workPlaceQueueCode
// this.orderFormData.workPlaceQueueCode = tempData.workPlaceQueueCode
this.orderFormData.mainAction = tempData.mainAction this.orderFormData.mainAction = tempData.mainAction
this.orderFormData.action = tempData.action this.orderFormData.action = tempData.action
this.orderFormData.fromCorp = tempData.fromCorp this.orderFormData.fromCorp = tempData.fromCorp
@ -715,6 +720,7 @@ export default {
this.orderStatus = false this.orderStatus = false
this.scanReCount = 0 this.scanReCount = 0
this.$refs.newCreateCodeDetail.codeCount = 0 this.$refs.newCreateCodeDetail.codeCount = 0
this.refreshCodesPanel() this.refreshCodesPanel()
this.selectSysParam() this.selectSysParam()
}, },
@ -2344,7 +2350,7 @@ export default {
this.ws.onmessage = function (event) { this.ws.onmessage = function (event) {
let scanData = event.data // let scanData = event.data //
let currentTime = Date.now() let currentTime = Date.now()
console.log(scanData) console.log(scanData + "33333")
// //
if (currentTime - lastScanTime > SCAN_TIMEOUT) { if (currentTime - lastScanTime > SCAN_TIMEOUT) {
// //
@ -2391,6 +2397,16 @@ export default {
}, },
handleCodeArray(codeArray) { handleCodeArray(codeArray) {
this.codeArray = codeArray; this.codeArray = codeArray;
},
paizhao(){
if (this.ws && this.ws.readyState === WebSocket.OPEN) {
// const data = JSON.stringify({ action: "subscribe", channel: "updates" }); //
var sendData = "ManualClick=1"
this.ws.send(sendData); //
console.log("Data sent:", sendData);
} else {
console.error("WebSocket is not connected.");
}
} }
}, },
filters: {}, filters: {},

Loading…
Cancel
Save