From fb0d5b8972f6ade8bb3e78dc30d7a36bf0c384b5 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Fri, 20 Sep 2024 18:38:03 +0800 Subject: [PATCH] =?UTF-8?q?9/20=20=E4=BC=98=E5=8C=96=E5=AE=9A=E6=97=B6?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../collect/CollectOrderAllotCardComponents.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/views/collect/CollectOrderAllotCardComponents.vue b/src/views/collect/CollectOrderAllotCardComponents.vue index e63e3061..42a8fd63 100644 --- a/src/views/collect/CollectOrderAllotCardComponents.vue +++ b/src/views/collect/CollectOrderAllotCardComponents.vue @@ -524,7 +524,8 @@ export default { getBusType: [], }, showType: 1, - routerParam: this.$route.query.routerParam + routerParam: this.$route.query.routerParam, + timer: null } }, @@ -557,6 +558,15 @@ export default { return }) }, + timerAuto() { + //启动定时器 + this.timer = setInterval(() => { + this.getList() + }, 10000) + + //清楚定时器的方法 + // clearInterval(this.timer) + }, changeInvRemind(val) { let post = { workPlaceCode: val @@ -819,6 +829,7 @@ export default { this.getList(); }); this.filterQuery.tagStatus = this.tagStatus + this.timerAuto() // this.filterQuery.workPlaceCode = this.workPlaceCode +'' }