|
|
@@ -207,6 +207,11 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+ let firstDayOfThisMonth = new Date();
|
|
|
+ firstDayOfThisMonth.setDate(1);
|
|
|
+ firstDayOfThisMonth.setHours(0);
|
|
|
+ firstDayOfThisMonth.setMinutes(0);
|
|
|
+ firstDayOfThisMonth.setSeconds(0);
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
@@ -372,7 +377,7 @@ export default {
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
- timeRange: [(new Date()).setDate(1), new Date()],
|
|
|
+ timeRange: [firstDayOfThisMonth, new Date()],
|
|
|
arriveTime: "",
|
|
|
searchId: "",
|
|
|
tableData3: [
|