|
|
|
@ -733,7 +733,7 @@ export default {
|
|
|
|
|
limit: 10,
|
|
|
|
|
},
|
|
|
|
|
manuOrderQuery: {
|
|
|
|
|
recordCode: null,
|
|
|
|
|
recordCode: "",
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
},
|
|
|
|
@ -800,6 +800,7 @@ export default {
|
|
|
|
|
//清空校验结果表
|
|
|
|
|
this.listCodeRel = null;
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.manuOrderQuery.recordCode = this.list.recordCode
|
|
|
|
|
getTraceManuOrderList(this.manuOrderQuery).then((res) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
@ -822,9 +823,13 @@ export default {
|
|
|
|
|
// 执行逻辑代码
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
|
this.getList()
|
|
|
|
|
if(!(this.list == undefined || this.list.length <= 0)){
|
|
|
|
|
this.manuOrderQuery.recordCode = this.list.recordCode
|
|
|
|
|
this.getManuOrderList()
|
|
|
|
|
}
|
|
|
|
|
// 使用递归法定时执行定时器
|
|
|
|
|
if(this.list == undefined || this.list.length <= 0){
|
|
|
|
|
this.monitorOrder = setTimeout(this.orderTimeOut, 10000);
|
|
|
|
|
this.monitorOrder = setTimeout(this.orderTimeOut, 1000);
|
|
|
|
|
}
|
|
|
|
|
// if (this.list != null) {
|
|
|
|
|
// clearTimeout(this.monitorOrder);
|
|
|
|
@ -1008,10 +1013,6 @@ export default {
|
|
|
|
|
this.list = res.data || [];
|
|
|
|
|
this.total = res.data.total || 0;
|
|
|
|
|
console.log(this.list)
|
|
|
|
|
if (this.list.recordCode != null || this.list.recordCode != "") {
|
|
|
|
|
this.manuOrderQuery.recordCode = this.list.recordCode
|
|
|
|
|
this.getManuOrderList()
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
this.list = [];
|
|
|
|
|