diff --git a/src/views/production/andonDashboard/index.vue b/src/views/production/andonDashboard/index.vue index 5d5ab4d..bf39e35 100644 --- a/src/views/production/andonDashboard/index.vue +++ b/src/views/production/andonDashboard/index.vue @@ -294,7 +294,6 @@ export default { productLineList: [], updateTime: '', loading: false, - refreshTimer: null, // 设备状态 deviceStatus: { totalDevices: 0, @@ -353,15 +352,8 @@ export default { created() { this.loadProductLines(); this.loadData(); - // 每60秒自动刷新 - this.refreshTimer = setInterval(() => { - this.loadData(); - }, 60000); }, beforeDestroy() { - if (this.refreshTimer) { - clearInterval(this.refreshTimer); - } }, methods: { loadProductLines() {