定时查询优化

master
schry 2 years ago
parent 5a34bcc35f
commit 1e2807ad47

@ -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 = [];

@ -852,6 +852,10 @@ 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, 1000);
@ -1039,8 +1043,6 @@ export default {
this.list = res.data || [];
this.total = res.data.total || 0;
console.log(this.list)
this.manuOrderQuery.recordCode = res.data.recordCode
this.getManuOrderList()
} else {
this.$message.error(res.message);
this.list = [];

Loading…
Cancel
Save