licp
2024-06-05 142ba3ed00220dcadf2a94e59664d5f1f027dbf4
src/components/view/b4-daily-business-statistics.vue
@@ -147,10 +147,13 @@
      },
      pageData:{},
      loading:false,
      timers:null,
    }
  },
  mounted(){
    this.init()
    this.timers&&clearInterval(this.timers);
    setInterval(this.init(),1000*60*5)
  },
  methods:{
    init(){
@@ -181,6 +184,9 @@
        return '0'
      }
    }
  },
  deactivated(){
    this.timers&&clearInterval(this.timers);
  }
}
</script>