修改展开

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() { resetQuery() {
this.queryParams = { if (this.queryParams.serviceStatus == "INTENTIONAL_SIGNING") {
pageNum: 1, this.queryParams = {
pageSize: 10, pageNum: 1,
serviceStatus: "INTENTIONAL_SIGNING", 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.intentionalTime = [];
this.signTime = []; this.signTime = [];
this.queryParams.signTimeStart = null; this.queryParams.signTimeStart = null;