From 4a9757d241498438be42c06a47696b68f0ee05bd Mon Sep 17 00:00:00 2001 From: zhouxueli <2841188632@qq.com> Date: Wed, 23 Aug 2023 18:02:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E5=8A=9E=E4=BA=8B=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/index/toDoList.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/index/toDoList.vue b/src/views/index/toDoList.vue index d8fa15bc..5a9fa9f7 100644 --- a/src/views/index/toDoList.vue +++ b/src/views/index/toDoList.vue @@ -52,6 +52,8 @@ export default { toDoType: item.toDoType.code }) console.log("不通过", item, result) + this.todolist=[] + await this.getList(); }, async passThrough(item) { let result = await toDoAudit({ @@ -59,6 +61,8 @@ export default { toDoType: item.toDoType.code }) console.log("通过", item, result) + this.todolist=[] + await this.getList(); } } }