|
@@ -403,6 +403,9 @@ export default {
|
|
|
if (this.findDate) {
|
|
|
this.listQuery1.startDate = this.findDate[0] + ' 00:00:00';
|
|
|
this.listQuery1.endDate = this.findDate[1] + ' 23:59:59';
|
|
|
+ }else {
|
|
|
+ this.listQuery1.startDate = null;
|
|
|
+ this.listQuery1.endDate = null;
|
|
|
}
|
|
|
if (this.paymentDate.length>1){
|
|
|
this.listQuery1.payStartDate = this.paymentDate[0]+' 00:00:00';
|
|
@@ -432,6 +435,9 @@ export default {
|
|
|
if (this.findDate) {
|
|
|
this.listQuery2.startDate = this.findDate1[0] + ' 00:00:00';
|
|
|
this.listQuery2.endDate = this.findDate1[1] + ' 23:59:59';
|
|
|
+ }else{
|
|
|
+ this.listQuery2.startDate = null;
|
|
|
+ this.listQuery2.endDate = null;
|
|
|
}
|
|
|
if (this.paymentDate1.length>1){
|
|
|
this.listQuery2.payStartDate = this.paymentDate1[0]+' 00:00:00';
|