jinx 2 years ago
parent
commit
d34fe2db88

File diff suppressed because it is too large
+ 1 - 1
server/test/a0k4xu045_202305311600080410/attach/sceneStore


+ 0 - 1
src/graphic/History/History.js

@@ -46,7 +46,6 @@ export default class History {
       pre: 0,
       next: 0,
     };
-
     const currentRecordIndex = historyService.getCurrentRecordIndex();
     const records = historyService.getHistoryRecords();
 

+ 1 - 1
src/graphic/Load.js

@@ -304,7 +304,7 @@ export default class Load {
   // 退出页面清除缓存及其他操作
   clear() {
     console.error("clear")
-    this.layer.uiControl.menu_clear();
+    this.layer.uiControl.menu_clear(true);
     console.warn("clear");
   }
 }

+ 1 - 1
src/graphic/Service/HistoryService.js

@@ -49,7 +49,7 @@ export class HistoryService {
     }
 
     setHistoryState(pre, next) {
-        console.error(pre, next)
+       
         this.history.state.pre = pre
         this.history.state.next = next
     }