Przeglądaj źródła

自动保存事件

haojianlong 4 lat temu
rodzic
commit
d84532eb94
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/components/editview/basePlanEditer.vue

+ 1 - 1
src/components/editview/basePlanEditer.vue

@@ -103,7 +103,7 @@ export default {
         // 2分钟自动保存
         this.autoSave = setInterval(() => {
             this.autoSavePlan();
-        }, 12000);
+        }, 120000);
         // 页面销毁前,清除定时器
         this.$once("hook:beforeDestroy", () => {
             clearInterval(this.autoSave);