소스 검색

Merge remote-tracking branch 'origin/master'

bill 2 년 전
부모
커밋
970b66e21a
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
     }