|
|
@ -330,6 +330,7 @@ |
|
|
|
<el-button |
|
|
|
v-loading="formLoading" |
|
|
|
type="primary" |
|
|
|
:disabled="isDisable" |
|
|
|
@click="save" |
|
|
|
v-debounce="debounceClick" |
|
|
|
>确认</el-button |
|
|
@ -421,6 +422,7 @@ export default { |
|
|
|
}; |
|
|
|
return { |
|
|
|
crmType: "M100Online", |
|
|
|
isDisable: false, |
|
|
|
drawerMBPrint: false, |
|
|
|
drawerMBDelete: false, |
|
|
|
drawerZHBPrint: false, |
|
|
@ -1085,7 +1087,7 @@ export default { |
|
|
|
//柱护板 |
|
|
|
this.hostSNQuery.isZhuHuBan = "1"; |
|
|
|
console.log("柱护板hostsn2参数" + JSON.stringify(this.hostSNQuery)); |
|
|
|
|
|
|
|
|
|
|
|
this.$axios |
|
|
|
.gets( |
|
|
|
"/api/newjit/bill-m100/get-print-start-hostsn2", |
|
|
@ -1279,7 +1281,10 @@ export default { |
|
|
|
this.hostCheckQuery.beginHostSN = parseInt(this.form.beginHostSN); |
|
|
|
this.hostCheckQuery.endHostSN = parseInt(this.form.endHostSN); |
|
|
|
this.hostCheckQuery.productLine = this.listQuery.productLine; |
|
|
|
console.log("检查柱护板-hostCheckQuery"+JSON.stringify(this.hostCheckQuery)); |
|
|
|
console.log( |
|
|
|
"检查柱护板-hostCheckQuery" + |
|
|
|
JSON.stringify(this.hostCheckQuery) |
|
|
|
); |
|
|
|
this.$axios |
|
|
|
.posts( |
|
|
|
"/api/newjit/bill-m100/check-mb-hostsn-break-num", |
|
|
@ -1287,6 +1292,10 @@ export default { |
|
|
|
) |
|
|
|
.then((response) => { |
|
|
|
console.log("检查门板-大众顺序号是否断号"); |
|
|
|
this.isDisable = true; |
|
|
|
setTimeout(() => { |
|
|
|
this.isDisable = false; |
|
|
|
}, 1000); |
|
|
|
if (response.item.length > 0) { |
|
|
|
//有断号 |
|
|
|
this.$confirm( |
|
|
@ -1397,7 +1406,7 @@ export default { |
|
|
|
}); |
|
|
|
} else if (this.listQuery.productType === 2) { |
|
|
|
//柱门板 |
|
|
|
this.hostCheckQuery.beginHostSN = parseInt(this.form.beginHostSN); |
|
|
|
this.hostCheckQuery.beginHostSN = parseInt(this.form.beginHostSN); |
|
|
|
this.hostCheckQuery.endHostSN = parseInt(this.form.endHostSN); |
|
|
|
this.hostCheckQuery.productLine = this.listQuery.productLine; |
|
|
|
|
|
|
@ -1408,6 +1417,10 @@ export default { |
|
|
|
) |
|
|
|
.then((response) => { |
|
|
|
console.log("检查门板-大众顺序号是否断号"); |
|
|
|
this.isDisable = true; |
|
|
|
setTimeout(() => { |
|
|
|
this.isDisable = false; |
|
|
|
}, 1000); |
|
|
|
if (response.item.length > 0) { |
|
|
|
//有断号 |
|
|
|
this.$confirm( |
|
|
|