Browse Source

定时任务改为5分钟查一次

master
陈裕财 4 years ago
parent
commit
573109ab46
  1. 4
      src/components/NoticeMsgBar/index.vue

4
src/components/NoticeMsgBar/index.vue

@ -111,8 +111,8 @@ export default {
}, },
mounted(){ mounted(){
this.doGetNoticeMsgNoTips() this.doGetNoticeMsgNoTips()
//setInterval(this.doGetNoticeMsgNoRead, 60000 * 5);
setInterval(this.doGetNoticeMsgNoRead, 5000);
setInterval(this.doGetNoticeMsgNoRead, 60000 * 5);
//setInterval(this.doGetNoticeMsgNoRead, 5000);
} }
} }
</script> </script>

Loading…
Cancel
Save