components/machine.vue
@@ -224,7 +224,17 @@ this.maEndTime = res.data.tbBillList.maEndTime; }) } } }, mounted() { // 页面加载时,启动定时器,每隔5分钟自动保存 this.autoSaveTimer = setInterval(() => { this.save(); // 直接调用已有的保存方法 }, 1 * 60 * 1000); // 1分钟 }, beforeDestroy() { // 页面卸载时清理定时器 clearInterval(this.autoSaveTimer); }, }; </script>