fix(#770): zhaoyun (文件合入)

This commit is contained in:
2026-06-18 10:07:44 +08:00
committed by 华佗
parent 5ea218d9bf
commit e40695224c

View File

@@ -1,5 +1,3 @@
<!--
* @Description: 门诊手术申请
--> -->
<template> <template>
<div class="surgery-application-container"> <div class="surgery-application-container">
@@ -34,7 +32,6 @@
v-loading="loading" v-loading="loading"
:data="surgeryList" :data="surgeryList"
border border
:row-config="{ keyField: 'surgeryNo' }"
:row-class-name="getRowClassName" :row-class-name="getRowClassName"
height="calc(100vh - 250px)" height="calc(100vh - 250px)"
style="width: 100%" style="width: 100%"
@@ -199,7 +196,6 @@
v-model="open" v-model="open"
:title="title" :title="title"
width="1200px" width="1200px"
teleported
:close-on-click-modal="false" :close-on-click-modal="false"
@close="cancel" @close="cancel"
> >
@@ -1817,10 +1813,17 @@ defineExpose({
padding: 20px 0; padding: 20px 0;
} }
/* Bug #770: 确保对话框表单内容可滚动,防止操作按钮遮盖字段 */ /* Bug #770: 对话框 body 滚动区域限制,防止 footer 按钮遮盖表单字段 */
:deep(.el-dialog__body) { :deep(.el-dialog__body) {
max-height: calc(100vh - 200px); max-height: calc(100vh - 220px);
overflow-y: auto; overflow-y: auto;
padding-bottom: 10px; padding-bottom: 10px;
} }
/* Bug #770: 确保 footer 固定在对话框底部,不随内容滚动 */
:deep(.el-dialog__footer) {
flex-shrink: 0;
border-top: 1px solid #ebeef5;
padding: 12px 20px;
}
</style> </style>