From 9c2d5e38508be3657b96428481f1c96127130a0b Mon Sep 17 00:00:00 2001 From: WXL (wul) <wl_5969728@163.com> Date: 星期三, 27 八月 2025 09:31:53 +0800 Subject: [PATCH] 测试完成 --- src/views/knowledge/questionnaire/compilequer/index.vue | 15 +++++++++++---- 1 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/views/knowledge/questionnaire/compilequer/index.vue b/src/views/knowledge/questionnaire/compilequer/index.vue index 5a12bb0..bc81908 100644 --- a/src/views/knowledge/questionnaire/compilequer/index.vue +++ b/src/views/knowledge/questionnaire/compilequer/index.vue @@ -691,7 +691,9 @@ <el-image style="width: 100px; height: 100px" :src="item.picturePath" - :preview-src-list="[...item.picturePath]" + :preview-src-list=" + item.picturePath ? [item.picturePath] : [] + " > </el-image> </div> @@ -1212,7 +1214,9 @@ <el-image style="width: 100px; height: 100px" :src="item.picturePath" - :preview-src-list="[...item.picturePath]" + :preview-src-list=" + item.picturePath ? [item.picturePath] : [] + " > </el-image> </div> @@ -2384,7 +2388,10 @@ display: flex; .presentation-left { width: 45%; - // height: 500px; + max-height: 80vh; + padding: 0 20px; + font-size: 18px; + overflow: auto; .button-textxg { color: #024df0; } @@ -2404,7 +2411,7 @@ } .presentation-right { width: 55%; - max-height: 688px; + max-height: 80vh; padding: 0 20px; font-size: 18px; overflow: auto; -- Gitblit v1.9.3