|
@@ -339,10 +339,16 @@ export default {
|
|
|
if(this.queryParams.time){
|
|
|
this.queryParams.payBeginTime = this.queryParams.time[0];
|
|
|
this.queryParams.payEndTime = this.queryParams.time[1];
|
|
|
+ }else {
|
|
|
+ this.queryParams.payBeginTime = null
|
|
|
+ this.queryParams.payEndTime = null
|
|
|
}
|
|
|
if(this.queryParams.createTime&&this.queryParams.createTime.length>0){
|
|
|
this.queryParams.createBeginTime = this.queryParams.createTime[0];
|
|
|
this.queryParams.createEndTime = this.queryParams.createTime[1];
|
|
|
+ }else {
|
|
|
+ this.queryParams.createBeginTime = null
|
|
|
+ this.queryParams.createEndTime = null
|
|
|
}
|
|
|
this.getList();
|
|
|
},
|
|
@@ -375,10 +381,9 @@ export default {
|
|
|
async pagePerformTimeListFun(value) {
|
|
|
try {
|
|
|
this.pagePerformTimeList = []
|
|
|
- this.$set(this.queryParams,'timeSnapshot',null)
|
|
|
+ this.$set(this.queryParams,'performTimeId',null)
|
|
|
if(!value){
|
|
|
-
|
|
|
- return
|
|
|
+ return
|
|
|
}
|
|
|
let { data,code } = await pagePerformTimeList({
|
|
|
performDate: value,
|