|
@@ -352,10 +352,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();
|
|
|
},
|
|
@@ -600,7 +606,7 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
this.tkSelectList = listCopy
|
|
|
- this.refundSubmitFun(0)
|
|
|
+ //this.refundSubmitFun(0)
|
|
|
if(this.refundSubmitError && this.refundSubmitError.length>0) {
|
|
|
let list = []
|
|
|
this.refundSubmitError.forEach((item,index)=>{
|