同步设置,扫码校验

master
anthonyywj2 3 years ago
parent 20a1f295bb
commit f38fa25e79

@ -41,17 +41,16 @@ const KeyScaner = /** @class */ (function () {
if (ev.shiftKey || ev.altKey || ev.ctrlKey || ev.metaKey) {
return;
}
console.log("监听到回车键。。。。。。。。。。。。。。。。。。。");
this.appendChar("\r");
this.completeInput(); //立即完成输入
} else if (ev.key == "Delete" || ev.key == "Backspace") {
console.log("监听到删除键。。。。。。。。。。。。。。。。。。。");
this.dom.innerTex = "";
this.appendChar("delete");
this.completeInput(); //立即完成输入
} else {
if (ev.key.length == 1) {
var charCode = ev.key.charCodeAt(0);
console.log("key="+charCode);
if (charCode >= 48 && charCode <= 57) {
if (ev.altKey) {
this.altBuf.push(ev.key);

@ -209,7 +209,6 @@ export default {
});
},
getOrderType(code) {
let query = {
locInvCode: code
}

@ -209,7 +209,11 @@
prop="action"
show-overflow-tooltip
></el-table-column>
<el-table-column width="180" label="允许缺量补单">
<template slot-scope="scope">
<el-checkbox v-model="scope.row.outChange"></el-checkbox>
</template>
</el-table-column>
<el-table-column label="操作" fixed="right">
<template slot-scope="scope">
<el-button
@ -320,20 +324,18 @@ export default {
getConfig() {
findConfig()
.then((response) => {
if (response.code == 20000) {
this.configQuery = response.data;
this.checkedBusTypes = [];
if (this.configQuery.busTypes != null) {
for (let i = 0; i < this.configQuery.busTypes.length; i++) {
for (let k = 0; k < this.busTypes.length; k++) {
if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
this.checkedBusTypes.push(this.busTypes[k]);
this.busTypes[k].isSelect = true;
}
}
}
}
this.configQuery = response.data;
this.checkedBusTypes = this.configQuery.busTypes;
if (this.configQuery.busTypes != null) {
// for (let i = 0; i < this.configQuery.busTypes.length; i++) {
//
// for (let k = 0; k < this.busTypes.length; k++) {
// if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
// this.checkedBusTypes.push(this.busTypes[k]);
// this.busTypes[k].isSelect = true;
// }
// }
// }
} else {
this.$message.error(response.message);
}
@ -353,17 +355,19 @@ export default {
center: true,
}).then(() => {
if (this.checkedBusTypes != null) {
this.configQuery.busTypes = [];
for (let i = 0; i < this.checkedBusTypes.length; i++) {
this.configQuery.busTypes.push(this.checkedBusTypes[i].action);
}
this.configQuery.busTypes = this.checkedBusTypes;
// for (let i = 0; i < this.checkedBusTypes.length; i++) {
// this.configQuery.busTypes.push(this.checkedBusTypes);
// }
}
updateConfig(this.configQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.$message.success("更新成功!");
this.$message.success("修改成功!");
this.getConfig();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
@ -414,6 +418,7 @@ export default {
addBusType() {
var selectData = this.multipleSelection;
selectData.forEach((obj) => {
obj.outChange = false;
this.checkedBusTypes.push(obj);
});
this.addBusDialogVisible = false;

Loading…
Cancel
Save