中心调研表的编辑页面,页面布局需要调整
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-12-26 14:42:27 +08:00
parent 4ee7906dcd
commit accac374ff
1 changed files with 15 additions and 3 deletions

View File

@ -44,7 +44,7 @@
</div>
<el-input type="textarea" :autosize="{ minRows: 4, maxRows: 99 }" placeholder=""
v-model="form.ReplaceContent" @input="handleInput" style="width: 70%;" />
<div style="text-align: right;margin: 20px;">
<div style="text-align: right;margin: 20px;" class="btnBox">
<el-button type="primary" :loading="loading" size="small" @click="handleSave">
{{ $t('common:button:save') }}
</el-button>
@ -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;
}
}
</style>