|
@@ -404,8 +404,8 @@ export default {
|
|
|
this.loading = true;
|
|
|
let params = {...this.addDateRange(this.queryParams, this.dateRange)};
|
|
|
if(params.performDate&¶ms.performDate.length==2){
|
|
|
- params.performDateStart = params.performDate[0];
|
|
|
- params.performDateEnd = params.performDate[1];
|
|
|
+ params.performBeginDate = params.performDate[0];
|
|
|
+ params.performEndDate = params.performDate[1];
|
|
|
}
|
|
|
delete params.performDate;
|
|
|
pageList(this.addDateRange(params))
|
|
@@ -542,11 +542,11 @@ export default {
|
|
|
}
|
|
|
|
|
|
if(this.queryParams.performDate){
|
|
|
- this.queryParams.performDateStart = this.queryParams.performDate[0];
|
|
|
- this.queryParams.performDateEnd = this.queryParams.performDate[1];
|
|
|
+ this.queryParams.performBeginDate = this.queryParams.performDate[0];
|
|
|
+ this.queryParams.performEndDate = this.queryParams.performDate[1];
|
|
|
}else {
|
|
|
- this.queryParams.performDateStart = null
|
|
|
- this.queryParams.performDateEnd = null
|
|
|
+ this.queryParams.performBeginDate = null
|
|
|
+ this.queryParams.performEndDate = null
|
|
|
}
|
|
|
|
|
|
let params = JSON.parse(JSON.stringify(this.queryParams))
|