selectTree.vue 3.9 KB

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