RuoYi
2023-11-29 cb80de3742d66cfee20bc3136c735e5ca5a7d45c
src/components/TreeSelect/index.vue
@@ -82,13 +82,15 @@
function initHandle() {
  nextTick(() => {
    const selectedValue = valueId.value;
    if(selectedValue !== null && typeof (selectedValue) !== "undefined"){
    if(selectedValue !== null && typeof (selectedValue) !== 'undefined') {
      const node = proxy.$refs.selectTree.getNode(selectedValue)
      if (node) {
        valueTitle.value = node.data[props.objMap.label]
        proxy.$refs.selectTree.setCurrentKey(selectedValue) // 设置默认选中
        defaultExpandedKey.value = [selectedValue] // 设置默认展开
      }
    } else {
      clearHandle()
    }
  })
}
@@ -138,7 +140,7 @@
  font-weight: normal;
}
ul li  .el-tree .el-tree-node__content {
ul li .el-tree .el-tree-node__content {
  height: auto;
  padding: 0 20px;
  box-sizing: border-box;