mounted() {
//开启轮询模式
this.setIntervalMethod();
},
//页面销毁时
beforeDestroy() {
//清除定时器
if (getDataInt) {
window.clearInterval(getDataInt);
}
},
methods: {
//开启轮询模式
setIntervalMethod() {
this.getAllData();
//定时每2秒获取一次各业务数据
getDataInt = setInterval(() => {
this.getAllData()
}, 2000)
},
}