定时查询优化

master
schry 2 years ago
parent 206016db08
commit 5a34bcc35f

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

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

Loading…
Cancel
Save