|
@@ -5,6 +5,7 @@
|
|
|
title="时间筛选: "
|
|
|
:isShowQuert="true"
|
|
|
:dates="mdate"
|
|
|
+ :endDate="endDate"
|
|
|
@changeValue="changeValue"
|
|
|
/>
|
|
|
</div>
|
|
@@ -143,6 +144,7 @@ export default {
|
|
|
return {
|
|
|
organId: "",
|
|
|
mdate: [],
|
|
|
+ endDate: '',
|
|
|
gymECharts: null,
|
|
|
gymData: [],
|
|
|
gymTotal: 0,
|
|
@@ -157,6 +159,7 @@ export default {
|
|
|
},
|
|
|
mounted() {
|
|
|
this.mdate = this.getInitDate();
|
|
|
+ this.endDate = this.$helpers.dayjs(new Date()).format("YYYY-MM-DD");
|
|
|
this.getData();
|
|
|
window.addEventListener("resize", this.resize);
|
|
|
},
|