|
@@ -155,6 +155,11 @@ export default {
|
|
|
created() {
|
|
|
this.params.status = '2';
|
|
|
this.params.sendNcRes='success';
|
|
|
+ var today = new Date();
|
|
|
+ var tomorrow = new Date(today);
|
|
|
+ tomorrow.setDate(today.getDate() + 1);
|
|
|
+ var nextDay = tomorrow.toISOString().split('T')[0];
|
|
|
+ this.params.billDates = [new Date().toISOString().split('T')[0],nextDay];
|
|
|
this.getList(this.params, this.Pages);
|
|
|
},
|
|
|
methods: {
|