修改展开

This commit is contained in:
闫晓茹 2024-08-05 11:23:43 +08:00
parent 88ac15025a
commit 6e08e53020

View File

@ -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;