style(UserSelectByDepModal): 优化部门选择用户弹窗样式

- 将左侧部门树卡片的 minHeight 改为固定 height: 613px
- 将 overflow: auto 改为 overflowY: auto,避免横向滚动条
This commit is contained in:
2026-04-01 15:31:19 +08:00
parent 4f848e7ce9
commit c1a56aefd9
@@ -3,7 +3,7 @@
<BasicModal v-bind="$attrs" @register="register" :title="modalTitle" width="1200px" @ok="handleOk" destroyOnClose @visible-change="visibleChange">
<a-row :gutter="10">
<a-col :md="7" :sm="24">
<a-card :style="{ minHeight: '613px', overflow: 'auto' }">
<a-card :style="{ height: '613px', overflowY: 'auto' }">
<!--组织机构-->
<BasicTree
ref="treeRef"