selectTree.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <el-select :value="valueTitle" :clearable="clearable" @clear="clearHandle">
  3. <el-option :value="valueTitle" :label="valueTitle" class="options">
  4. <el-tree
  5. id="tree-option"
  6. ref="selectTree"
  7. :accordion="accordion"
  8. :data="options"
  9. :props="props"
  10. :node-key="props.value"
  11. :default-expanded-keys="defaultExpandedKey"
  12. @node-click="handleNodeClick">
  13. </el-tree>
  14. </el-option>
  15. </el-select>
  16. </template>
  17. <script>
  18. export default {
  19. name: "select-tree",
  20. props:{
  21. // 配置项
  22. props:{
  23. type: Object,
  24. default: {
  25. value:'id', // ID字段名
  26. label: 'title', // 显示名称
  27. children: 'children' // 子级字段名
  28. }
  29. },
  30. // 选项列表数据(树形结构的对象数组)
  31. options:{ type: Array, default: [] },
  32. // 初始值
  33. value:{ type: Number, default: null },
  34. // 可清空选项
  35. clearable:{ type:Boolean, default: true },
  36. // 自动收起
  37. accordion:{ type:Boolean, default: false }
  38. },
  39. data() {
  40. return {
  41. valueId: null,
  42. valueTitle:'',
  43. defaultExpandedKey:[]
  44. }
  45. },
  46. mounted(){
  47. this.valueId = this.value, // 初始值
  48. this.initHandle()
  49. },
  50. methods: {
  51. // 初始化值
  52. initHandle(){
  53. if(this.valueId){
  54. this.valueTitle = this.$refs.selectTree.getNode(this.valueId).data[this.props.label] // 初始化显示
  55. this.$refs.selectTree.setCurrentKey(this.valueId) // 设置默认选中
  56. this.defaultExpandedKey = [this.valueId] // 设置默认展开
  57. }
  58. this.initScroll()
  59. },
  60. // 初始化滚动条
  61. initScroll(){
  62. this.$nextTick(()=>{
  63. let scrollWrap = document.querySelectorAll('.el-scrollbar .el-select-dropdown__wrap')[0]
  64. let scrollBar = document.querySelectorAll('.el-scrollbar .el-scrollbar__bar')
  65. scrollWrap.style.cssText = 'margin: 0px; max-height: none; overflow: hidden;'
  66. scrollBar.forEach(ele => ele.style.width = 0)
  67. })
  68. },
  69. // 切换选项
  70. handleNodeClick(node){
  71. this.valueTitle = node[this.props.label]
  72. this.valueId = node[this.props.value]
  73. this.$emit('getValue',this.valueId)
  74. this.defaultExpandedKey = []
  75. },
  76. // 清除选中
  77. clearHandle(){
  78. this.valueTitle = ''
  79. this.valueId = null
  80. this.defaultExpandedKey = []
  81. this.clearSelected()
  82. this.$emit('getValue',null)
  83. },
  84. // 清空选中样式
  85. clearSelected(){
  86. let allNode = document.querySelectorAll('#tree-option .el-tree-node')
  87. allNode.forEach((element)=>element.classList.remove('is-current'))
  88. }
  89. },
  90. watch: {
  91. value(){
  92. this.valueId = this.value
  93. this.initHandle()
  94. }
  95. },
  96. }
  97. </script>
  98. <style scoped>
  99. .el-scrollbar .el-scrollbar__view .el-select-dropdown__item{
  100. height: auto;
  101. max-height: 274px;
  102. padding: 0;
  103. overflow: hidden;
  104. overflow-y: auto;
  105. }
  106. .el-select-dropdown__item.selected{
  107. font-weight: normal;
  108. }
  109. ul li >>>.el-tree .el-tree-node__content{
  110. height:auto;
  111. padding: 0 20px;
  112. }
  113. .el-tree-node__label{
  114. font-weight: normal;
  115. }
  116. .el-tree >>>.is-current .el-tree-node__label{
  117. color: #409EFF;
  118. font-weight: 700;
  119. }
  120. .el-tree >>>.is-current .el-tree-node__children .el-tree-node__label{
  121. color:#606266;
  122. font-weight: normal;
  123. }
  124. </style>