diff --git a/src/assets/less/common.less b/src/assets/less/common.less index 21af682..17b838c 100644 --- a/src/assets/less/common.less +++ b/src/assets/less/common.less @@ -1028,4 +1028,34 @@ :global(.tooltip-style .ant-tooltip-inner) { max-height: 40vh; overflow: auto; +} + +// 列表左侧树结构可折叠样式 +.page-left-box { + position: relative; +} +.page-left-box-hide { + width: 0 !important; + min-width: 0 !important; + padding: 0 !important; + border: none !important; +} +.control-left-tree-expand { + width: 12px; + height: 24px; + border-radius: 0 12px 12px 0; + background-color: @primary-color; + color: white; + position: absolute; + z-index: 3; + left: 100%; + top: calc(50% - 52px); + + .anticon { + position: absolute; + top: 50%; + left: -2px; + transform: translateY(-50%); + cursor: pointer; + } } \ No newline at end of file diff --git a/src/views/standardRegulationLibrary/profileCenter/ProfileCenterList.vue b/src/views/standardRegulationLibrary/profileCenter/ProfileCenterList.vue index 43c3009..18034d6 100644 --- a/src/views/standardRegulationLibrary/profileCenter/ProfileCenterList.vue +++ b/src/views/standardRegulationLibrary/profileCenter/ProfileCenterList.vue @@ -1,11 +1,12 @@