From 6e08e53020319e516f604b6aa13341f44faf4b1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=97=AB=E6=99=93=E8=8C=B9?= <1935832701@qq.com> Date: Mon, 5 Aug 2024 11:23:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=B1=95=E5=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/manage/signRecord/index.vue | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/src/views/manage/signRecord/index.vue b/src/views/manage/signRecord/index.vue index 7844017..96a86f9 100644 --- a/src/views/manage/signRecord/index.vue +++ b/src/views/manage/signRecord/index.vue @@ -827,11 +827,25 @@ export default { }, /** 重置按钮操作 */ resetQuery() { - this.queryParams = { - pageNum: 1, - pageSize: 10, - serviceStatus: "INTENTIONAL_SIGNING", - }; + if (this.queryParams.serviceStatus == "INTENTIONAL_SIGNING") { + this.queryParams = { + pageNum: 1, + pageSize: 10, + serviceStatus: "INTENTIONAL_SIGNING", + }; + } else if (this.queryParams.serviceStatus == "SERVICE_CENTER") { + this.queryParams = { + pageNum: 1, + pageSize: 10, + serviceStatus: "SERVICE_CENTER", + }; + } else { + this.queryParams = { + pageNum: 1, + pageSize: 10, + serviceStatus: "SERVICE_END", + }; + } this.intentionalTime = []; this.signTime = []; this.queryParams.signTimeStart = null;