fix(#770): 请修复 Bug #770(重试)
根因: - Bug #请修复 Bug #770(重试) 存在的问题 修复: - ## 步骤 5: 验证修改
This commit is contained in:
@@ -198,7 +198,7 @@
|
|||||||
<el-dialog
|
<el-dialog
|
||||||
v-model="open"
|
v-model="open"
|
||||||
:title="title"
|
:title="title"
|
||||||
width="1000px"
|
width="1200px"
|
||||||
teleported
|
teleported
|
||||||
:close-on-click-modal="false"
|
:close-on-click-modal="false"
|
||||||
@close="cancel"
|
@close="cancel"
|
||||||
@@ -397,7 +397,7 @@
|
|||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<!-- 次要手术表格 -->
|
<!-- 次要手术表格 -->
|
||||||
<el-row v-if="form.secondarySurgeries && form.secondarySurgeries.length > 0">
|
<el-row v-if="form.secondarySurgeries && form.secondarySurgeries.length > 0" style="margin-top: 12px;">
|
||||||
<el-col
|
<el-col
|
||||||
:span="24"
|
:span="24"
|
||||||
style="margin-bottom: 20px;"
|
style="margin-bottom: 20px;"
|
||||||
@@ -407,10 +407,12 @@
|
|||||||
border
|
border
|
||||||
stripe
|
stripe
|
||||||
size="small"
|
size="small"
|
||||||
|
style="width: 100%"
|
||||||
|
:column-config="{ resizable: true }"
|
||||||
>
|
>
|
||||||
<vxe-column
|
<vxe-column
|
||||||
title="手术名称"
|
title="手术名称"
|
||||||
min-width="200"
|
min-width="250"
|
||||||
>
|
>
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-select
|
<el-select
|
||||||
@@ -518,7 +520,7 @@
|
|||||||
</vxe-column>
|
</vxe-column>
|
||||||
<vxe-column
|
<vxe-column
|
||||||
title="操作"
|
title="操作"
|
||||||
width="100"
|
width="80"
|
||||||
align="center"
|
align="center"
|
||||||
>
|
>
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
@@ -1815,4 +1817,11 @@ defineExpose({
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 20px 0;
|
padding: 20px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Bug #770: 确保对话框表单内容可滚动,防止操作按钮遮盖字段 */
|
||||||
|
:deep(.el-dialog__body) {
|
||||||
|
max-height: calc(100vh - 200px);
|
||||||
|
overflow-y: auto;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user