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;