fix(frontend): 修复编辑分组模态框显示问题

WHAT: 修复账户分组管理中编辑分组表单无法显示的问题
WHY: 编辑模态框使用无效的 z-60 类名导致层级冲突,编辑表单被主模态框遮挡
HOW: 将编辑模态框的 z-index 类名从 z-60 改为 z-50,与主模态框同级但利用 DOM 顺序确保正确显示;保持其他样式和功能不变
This commit is contained in:
mouyong
2025-08-20 21:37:19 +08:00
parent 5ae136a5dc
commit 54dca0f285

View File

@@ -172,7 +172,7 @@
<!-- 编辑分组模态框 --> <!-- 编辑分组模态框 -->
<div <div
v-if="showEditForm" v-if="showEditForm"
class="modal z-60 fixed inset-0 flex items-center justify-center p-3 sm:p-4" class="modal fixed inset-0 z-50 flex items-center justify-center p-3 sm:p-4"
> >
<div class="modal-content w-full max-w-lg p-4 sm:p-6"> <div class="modal-content w-full max-w-lg p-4 sm:p-6">
<div class="mb-4 flex items-center justify-between"> <div class="mb-4 flex items-center justify-between">