liyongli 1 年之前
父節點
當前提交
0cd821811b
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      src/view/allMedia/imageProcessing/detail.vue
  2. 1 1
      src/view/allMedia/videoProcessing/detail.vue

+ 1 - 1
src/view/allMedia/imageProcessing/detail.vue

@@ -117,7 +117,7 @@ onMounted(() => {
   let r_width = left.value.$el.offsetWidth - 52;
   let h = (target.heightInPixel / target.widthInPixel) * r_width;
   if (h > window.screen.height) {
-    h = window.screen.height - 252;
+    h = window.screen.height - 352;
   }
   image_data.value = {
     height: h,

+ 1 - 1
src/view/allMedia/videoProcessing/detail.vue

@@ -166,7 +166,7 @@ function canplay() {
   let r_width = left.value.$el.offsetWidth - 52;
   let h = (video.value.videoWidth / video.value.videoHeight) * r_width;
   if (h > window.screen.height) {
-    h = window.screen.height - 252;
+    h = window.screen.height - 352;
   }
   image_data.value = {
     height: h,