定时查询优化

master
schry 2 years ago
parent 206016db08
commit 5a34bcc35f

@ -711,7 +711,7 @@
</template>
<script>
import {isBlank} from "@/utils/strUtil";
import {filterylqxzcrbarmc,filterCpmctymc,
filterGgxh, filterNameCode, sourceSearch,filterCompanyName,getTraceManuOrderList,
getManuCodeRelList} from "@/api/udi/udiTrace";
@ -823,7 +823,12 @@ export default {
this.filterQuery.page = 1;
this.getList()
// 使
this.monitorOrder = setTimeout(this.orderTimeOut, 10000);
if(this.list == undefined || this.list.length <= 0){
this.monitorOrder = setTimeout(this.orderTimeOut, 10000);
}
// if (this.list != null) {
// clearTimeout(this.monitorOrder);
// }
},
formaterSourceType(row){
if (row.sourceType == 1) {
@ -984,18 +989,16 @@ export default {
page: 1,
limit: 10,
};
this.list = null
this.list = null,
this.listOrder = null,
this.listCodeRel = null,
clearTimeout(this.monitorOrder);
this.monitorOrder = null
this.monitorOrder = ""
//this.total = 0
},
onSubmit() {
this.orderTimeOut()
if (this.list != null) {
clearTimeout(this.monitorOrder);
this.monitorOrder = null
this.showCollapses = true
}
},
getList() {
this.loading = true;
@ -1004,9 +1007,11 @@ export default {
if (res.code === 20000) {
this.list = res.data || [];
this.total = res.data.total || 0;
console.log(res.data)
this.manuOrderQuery.recordCode = res.data.recordCode
this.getManuOrderList()
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 = [];

@ -853,7 +853,9 @@ export default {
this.filterQuery.page = 1;
this.getList()
// 使
this.monitorOrder = setTimeout(this.orderTimeOut, 10000);
if(this.list == undefined || this.list.length <= 0){
this.monitorOrder = setTimeout(this.orderTimeOut, 1000);
}
},
formaterSourceType(row){
if (row.sourceType == 1) {
@ -1020,12 +1022,14 @@ export default {
page: 1,
limit: 10,
};
this.list = null
//this.total = 0
this.list = null,
this.listOrder = null,
this.listCodeRel = null,
clearTimeout(this.monitorOrder);
this.monitorOrder = ""
},
onSubmit() {
this.filterQuery.page = 1;
this.getList()
this.orderTimeOut()
},
getList() {
this.loading = true;

Loading…
Cancel
Save