检验项目设置-检验类型的实现

This commit is contained in:
2026-01-04 13:50:05 +08:00
parent 5d82800976
commit ddf1553846
3 changed files with 60 additions and 16 deletions

View File

@@ -117,7 +117,7 @@
</el-descriptions-item>
</el-descriptions>
</div>
<div style="padding: 10px">
<div style="padding: 10px; position: relative">
<el-tabs
type="card"
style="width: 100%; height: 100%"
@@ -729,12 +729,14 @@ const onHospitalization = async () => {
.disabled-wrapper .overlay {
position: absolute;
top: 0;
top: 50px;
left: 0;
width: 100%;
height: 100%;
height: calc(100% - 50px);
z-index: 999;
/* 确保覆盖在内容上方 */
/* 确保覆盖在内容上方,但不覆盖顶部按钮区域 */
cursor: not-allowed;
background-color: rgba(255, 255, 255, 0.01);
pointer-events: auto;
}
</style>