style(UserSelectByDepModal): 优化部门选择用户弹窗样式
- 将左侧部门树卡片的 minHeight 改为固定 height: 613px - 将 overflow: auto 改为 overflowY: auto,避免横向滚动条
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user