value
2024-06-13 fd9deb7e45ff86f3570a3048a459b29f0ebbd628
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>