jinx преди 2 години
родител
ревизия
d34fe2db88
променени са 4 файла, в които са добавени 3 реда и са изтрити 4 реда
  1. 1 1
      server/test/a0k4xu045_202305311600080410/attach/sceneStore
  2. 0 1
      src/graphic/History/History.js
  3. 1 1
      src/graphic/Load.js
  4. 1 1
      src/graphic/Service/HistoryService.js

Файловите разлики са ограничени, защото са твърде много
+ 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
     }