licp
2024-12-25 996e3e343760bcfa23b55138f85abd62d6ebfb22
src/components/view/b4-site-hours-statistics.vue
@@ -247,12 +247,8 @@
    }
  },
  mounted(){
    const year = new Date().getFullYear();
    const month = new Date().getMonth();
    // 设置起始日期和结束日期
    this.startTime = new Date(year, month, 1).toISOString().slice(0, 10); // 月初
    this.endTime = new Date(year, month + 1, 0).toISOString().slice(0, 10); // 月末
    this.init()
    this.month = new Date()
    this.changeTime()
  },
  methods:{
    init(){
@@ -298,9 +294,10 @@
    changeTime(){
      const year = new Date(this.month).getFullYear();
      const month = new Date(this.month).getMonth();
      const day = new Date(year, month + 1, 0).getDate(); //
      // 设置起始日期和结束日期
      this.startTime = new Date(year, month, 1).toISOString().slice(0, 10); // 月初
      this.endTime = new Date(year, month + 1, 0).toISOString().slice(0, 10); // 月末
      this.startTime = `${year}-${month + 1}-01`
      this.endTime = `${year}-${month + 1}-${day}` // 月末
      this.siteList.forEach(item=>{
        item.page.current = 1
      })