refreshData() {
const fnc = ()=> {
this.timer = setTimeout(async ()=> {
await Promise.all([this.getTaskStatus(), this.getTableDatas()]);
fnc();
}, 4e4);
};
this.$on('hook:beforeDestroy', ()=> {
clearTimeout(this.timer);
this.timer = null;
});
fnc();
},