소스 검색

[Mod 0000] SVG风窗默认改为双道

houzekong 2 주 전
부모
커밋
5831d0d815
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      src/views/vent/monitorManager/windowMonitor/window.data.ts

+ 3 - 2
src/views/vent/monitorManager/windowMonitor/window.data.ts

@@ -307,13 +307,14 @@ export const chartsColumns = [
 export function getModelComponent(is2DModel: boolean = false, sysOrgCode?: string) {
   // @ts-ignore
   return defineAsyncComponent(() => {
-    // return import('./components/windowDualSVG.vue');
     if (!is2DModel) return import('./components/entryThree.vue');
     switch (sysOrgCode) {
       // case '000000':
       //   return import('./components/000000.vue');
+      // return import('./components/windowDualSVG.vue');
       default:
-        return import('./components/windowSVG.vue');
+        return import('./components/windowDualSVG.vue');
+      // return import('./components/windowSVG.vue');
     }
   });
 }