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; + } }