소스 검색

refactor(frontend): 调整弹出窗口的默认分辨率- 将 HeaderBar 组件中的设置窗口分辨率从 1920x1080调整为 3840x2160
-将 Photography 组件中的主图与详情生成窗口分辨率从 1920x1080调整为 3840x2160

panqiuyao 3 달 전
부모
커밋
51ffa62428
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 2
      frontend/src/components/header-bar/index.vue
  2. 2 2
      frontend/src/views/Photography/shot.vue

+ 2 - 2
frontend/src/components/header-bar/index.vue

@@ -200,8 +200,8 @@ function openSetting() {
   clientStore.ipc.removeAllListeners(icpList.utils.openMain)
   let params = {
     title: '设置',
-    width: 1920,
-    height: 1080,
+    width: 3840,
+    height: 2160,
     frame: true,
     id: 'seeting',
     url: getRouterUrl(href)

+ 2 - 2
frontend/src/views/Photography/shot.vue

@@ -1054,8 +1054,8 @@ function openPhotographyDetail() {
   clientStore.ipc.removeAllListeners(icpList.utils.openMain);
   let params = {
     title: '主图与详情生成',
-    width: 1920,
-    height: 1080,
+    width: 3840,
+    height: 2160,
     frame: true,
     id: "PhotographyDetail",
     url: getRouterUrl(href)