|
@@ -136,8 +136,8 @@
|
|
|
},
|
|
|
outList() {
|
|
|
let param = new FormData();
|
|
|
- let startDate = this.searchList[0].value ? this.$formatDate(this.searchList[0].value, "YYYY-MM") : '';
|
|
|
- let endDate = this.searchList[1].value ? this.$formatDate(this.searchList[1].value, "YYYY-MM") : '';
|
|
|
+ let startDate = this.searchList[0].value ? this.$formatDate(this.searchList[0].value, "YYYY-MM") + '-01' : '';
|
|
|
+ let endDate = this.searchList[1].value ? this.$formatDate(this.searchList[1].value, "YYYY-MM") + '-01' : '';
|
|
|
param.append("startDate", startDate);
|
|
|
param.append("endDate", endDate);
|
|
|
this.$http({
|