<template>
<el-select :value="valueTitle" :clearable="clearable" @clear="clearHandle">
<el-option :value="valueTitle" :label="valueTitle" class="options">
<el-tree
id="tree-option"
ref="selectTree"
:accordion="accordion"
:data="options"
:props="props"
:default-expand-all='true'
:expand-on-click-node='false'
:node-key="props.value"
:default-expanded-keys="[]"
@node-click="handleNodeClick">
</el-tree>
</el-option>
</el-select>
</template>
<script>
export default {
name: "el-tree-select",
props:{
props:{
type: Object,
default: {
value:"id",
label: 'cnName',
children: 'children'
}
},
options:{ type: Array },
value:{ type: String, default: null },
clearable:{ type:Boolean, default: true },
accordion:{ type:Boolean, default: false }
},
data() {
return {
valueId: null,
valueTitle:'',
defaultExpandedKey:[]
}
},
mounted(){
if(this.value==0){
this.valueTitle ='请选择'
}
this.valueId = this.value
console.log(this.options.length>0)
if(this.options.length>0){
this.initHandle()
this.defaultExpandedKey = []
}
},
updated() {
if(this.options.length>0){
this.initHandle()
this.defaultExpandedKey = []
}else{
this.initHandle()
this.defaultExpandedKey = []
}
},
methods: {
initHandle(){
if(this.valueId!=0){
this.valueTitle = this.$refs.selectTree.getNode(this.valueId).data[this.props.label]
this.$refs.selectTree.setCurrentKey(this.valueId)
this.defaultExpandedKey = []
}else{
this.valueTitle ='请选择'
this.$refs.selectTree.setCurrentKey()
}
this.initScroll()
},
One_cd(){
this.valueTitle ='请选择'
this.$emit('getValue','0')
},
initScroll(){
this.$nextTick(()=>{
let scrollWrap = document.querySelectorAll('.el-scrollbar .el-select-dropdown__wrap')[0]
let scrollBar = document.querySelectorAll('.el-scrollbar .el-scrollbar__bar')
scrollWrap.style.cssText = 'margin: 0px; max-height: none; overflow: hidden;'
scrollBar.forEach(ele => ele.style.width = 0)
})
},
handleNodeClick(node){
this.valueTitle = node[this.props.label]
this.valueId = node[this.props.value]
this.$emit('getValue',this.valueId)
this.defaultExpandedKey = []
},
clearHandle(){
this.valueTitle = ''
this.valueId = null
this.defaultExpandedKey = []
this.clearSelected()
this.$emit('getValue',null)
},
clearSelected(){
let allNode = document.querySelectorAll('#tree-option .el-tree-node')
allNode.forEach((element)=>element.classList.remove('is-current'))
}
},
watch: {
value(){
this.valueId = this.value
this.initHandle()
}
},
}
</script>
<style scoped>
.el-scrollbar .el-scrollbar__view .el-select-dropdown__item{
height: auto;
max-height: 274px;
padding: 0;
overflow: hidden;
overflow-y: auto;
}
::-webkit-scrollbar {
width:5px;
background-color: #f3f3f3;
}
::-webkit-scrollbar-track {
border-radius:10px;
}
::-webkit-scrollbar-thumb {
border-radius:10px;
background:#b0c3d8;
}
.el-select-dropdown__item.selected{
font-weight: normal;
}
ul li >>>.el-tree .el-tree-node__content{
height:auto;
padding: 0 20px;
}
.el-tree-node__label{
font-weight: normal;
}
.el-tree >>>.is-current .el-tree-node__label{
color: #409EFF;
font-weight: 700;
}
.el-tree >>>.is-current .el-tree-node__children .el-tree-node__label{
color:#606266;
font-weight: normal;
}
.Bg{
background: #1aa094;
color: white;
}
</style>
<TreeSelect
:props="props"
:options="columnList"
:value="treeId"
:clearable="isClearable"
:accordion="isAccordion"
@getValue="getValue($event)"/>
<script>
'@/components/TreeSelect/index.vue'
export default {
components:{TreeSelect},
```data() {
return {
isClearable:true, // 可清空(可选)
isAccordion:false, // 可收起(可选)
valueId:'0', // 初始ID(可选)
props:{ // 配置项(必选)
value: 'id',
label: 'cnName',
children: 'children',
// disabled:true
},
options:[
{id:1,name:"一级树-1",
children:[
{id:3,cnName:"二级树-1"}
]
},
{id:2,name:"一级树-2",
children:[
{id:4,cnName:"二级树-2"}
]
}
],
}
},
methods: {
getValue(){
}
}
}