[update 拆分排序弹框] 树结构高度调整

This commit is contained in:
danshihao
2024-09-20 15:37:38 +08:00
parent 546db5a970
commit 3b6865b660
@@ -8,12 +8,14 @@
:footer="null"
:confirmLoading="confirmLoading"
:fullscreen.sync="fullscreen"
style="height: 100%"
class="split-tree-order-model"
@ok="handleOk"
@cancel="handleCancel">
<a-spin :spinning="confirmLoading">
<a-tree :show-line="true"
:show-icon="true"
style="height: 50vh; overflow-y: auto"
style="height: 100%; overflow-y: auto"
:class="{fullscreen: fullscreen}"
checkable
:tree-data="treeData"
@@ -292,4 +294,13 @@ export default {
.tree-node-custom-title {
max-width: 460px;
}
.split-tree-order-model {
/deep/ .ant-modal-body {
height: 50vh;
}
/deep/ .ant-spin-container,
/deep/ .ant-spin-nested-loading {
height: 100%;
}
}
</style>