From accac374ffcf7232fb8fe53a760f840a719c3735 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Fri, 26 Dec 2025 14:42:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=AD=E5=BF=83=E8=B0=83=E7=A0=94=E8=A1=A8?= =?UTF-8?q?=E7=9A=84=E7=BC=96=E8=BE=91=E9=A1=B5=E9=9D=A2=EF=BC=8C=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=B8=83=E5=B1=80=E9=9C=80=E8=A6=81=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../site-research/components/ImageManual.vue | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/src/views/trials/trials-panel/attachments/site-research/components/ImageManual.vue b/src/views/trials/trials-panel/attachments/site-research/components/ImageManual.vue index 970ee285..d2fb481b 100644 --- a/src/views/trials/trials-panel/attachments/site-research/components/ImageManual.vue +++ b/src/views/trials/trials-panel/attachments/site-research/components/ImageManual.vue @@ -44,7 +44,7 @@ -
+
{{ $t('common:button:save') }} @@ -150,7 +150,7 @@ export default { let res = await getTrialDocumentList(data) if (res.IsSuccess) { const { CurrentPageData } = res.Result - if (CurrentPageData.length <= 0) this.$message.warning(this.$t("trials:researchRecord:ImageManual:message:noImageManual")) + if (CurrentPageData.length <= 0) this.$confirm(this.$t("trials:researchRecord:ImageManual:message:noImageManual")) } } catch (err) { console.log(err) @@ -205,16 +205,28 @@ export default { width: 100%; height: 100%; display: flex; + position: relative; .config, .preview { - width: 50%; + width: 65%; height: 100%; overflow-y: auto; } .config { + width: 35%; border-right: 1px solid #EBEEF5; } + + .btnBox { + position: absolute; + bottom: 0; + left: 0; + } + + ::v-deep .el-checkbox__label { + white-space: normal; + } }