快乐的昕的电脑
2025-10-31 638e38610f3ef6479cb98fbd90908c80c4ce9405
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>