|
|
|
@ -1164,7 +1164,28 @@ export default {
|
|
|
|
|
parseTime(date, "{y}{m}{d}{h}{i}{s}") +
|
|
|
|
|
Math.ceil(Math.random() * 89 + 10);
|
|
|
|
|
}
|
|
|
|
|
this.loading = true;
|
|
|
|
|
// this.loading = true;
|
|
|
|
|
|
|
|
|
|
this.warnResult = "";
|
|
|
|
|
this.errResult = "";
|
|
|
|
|
this.result = "";
|
|
|
|
|
this.warnVisible = false;
|
|
|
|
|
this.errVisible = false;
|
|
|
|
|
|
|
|
|
|
this.checkSuccess = true;
|
|
|
|
|
if (this.getDMHotskeyValue(this.scanCode))
|
|
|
|
|
return
|
|
|
|
|
this.codeFormData.code = this.scanCode.trim();
|
|
|
|
|
if (this.codeFormData.code.includes(";")) {
|
|
|
|
|
const codeArray = this.codeFormData.code.split(";");
|
|
|
|
|
let params = {
|
|
|
|
|
codeList: codeArray,
|
|
|
|
|
};
|
|
|
|
|
this.batchVailCode(params)
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let tQuery = Object.assign(
|
|
|
|
|
JSON.parse(JSON.stringify(this.orderFormData))
|
|
|
|
|
);
|
|
|
|
|