Compare commits

...

7 Commits

Author SHA1 Message Date
ae746cdd37 fix(#770): 请修复 Bug #770(重试)
根因:
- Bug #请修复 Bug #770(重试) 存在的问题

修复:
- ## 步骤 5: 验证修改
2026-06-16 16:19:53 +08:00
b2c60ab76f Merge remote-tracking branch 'origin/develop' into zhaoyun 2026-06-16 16:06:10 +08:00
fec6e928d8 Merge remote-tracking branch 'origin/develop' into zhaoyun 2026-06-16 15:57:05 +08:00
471bf2b823 Merge remote-tracking branch 'origin/develop' into zhaoyun 2026-06-16 14:15:44 +08:00
7b42e94b85 Merge remote-tracking branch 'origin/develop' into zhaoyun 2026-06-16 13:45:35 +08:00
e35bdb5b9e Merge remote-tracking branch 'origin/develop' into zhaoyun 2026-06-16 13:35:29 +08:00
9ed35448ce fix(#770): 请修复 Bug #770(诸葛亮分析完成,分配给你)
根因:
- Bug #请修复 Bug #770(诸葛亮分析完成,分配给你) 存在的问题

修复:
- 现在让我运行 vite build 验证修复:
2026-06-16 13:28:42 +08:00

View File

@@ -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>