修改展开
This commit is contained in:
parent
88ac15025a
commit
6e08e53020
@ -827,11 +827,25 @@ export default {
|
|||||||
},
|
},
|
||||||
/** 重置按钮操作 */
|
/** 重置按钮操作 */
|
||||||
resetQuery() {
|
resetQuery() {
|
||||||
|
if (this.queryParams.serviceStatus == "INTENTIONAL_SIGNING") {
|
||||||
this.queryParams = {
|
this.queryParams = {
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
serviceStatus: "INTENTIONAL_SIGNING",
|
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;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user