Browse Source

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

panqiuyao 3 months ago
parent
commit
51ffa62428

+ 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)