下拉框選擇
<SelectTree
:props="props"
:options="options"
:value="valueId"
:clearable="isClearable"
:accordion="isAccordion"
@getValue="getValue($event)"/>
import SelectTree from "../../components/treeSelect.vue";
data() {
return {
isClearable:true, // 可清空(可選)
isAccordion:false, // 可收起(可選)
valueId:'0', // 初始ID(可選)
props:{ // 配置項(必選)
value: 'id',
label: 'title',
children: 'children',
// disabled:true
},
options:[],
};
},
methods: {
// 取值
getValue(value){
this.valueId = value
// console.log(value);
},
}
數(shù)據(jù)三級嵌套展示
<template>
<el-select :value="valueTitle" :clearable="clearable" @clear="clearHandle">
<p style="line-height: 40px;text-indent: 10px;cursor: pointer;z-index: 9999;font-size: 14px;" :class="{Bg:valueTitle=='一級菜單'}" @click="One_cd">一級菜單</p>
<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", // ID字段名
label: 'title', // 顯示名稱
children: 'children' // 子級字段名
}
},
// 選項列表數(shù)據(jù)(樹形結(jié)構(gòu)的對象數(shù)組)
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(){
// console.log(this.value)
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(){
// console.log(this.valueId)
if(this.valueId!=0){
this.valueTitle = this.$refs.selectTree.getNode(this.valueId).data[this.props.label] // 初始化顯示
// console.log(this.valueTitle)
this.$refs.selectTree.setCurrentKey(this.valueId) // 設(shè)置默認選中
this.defaultExpandedKey = [] // 設(shè)置默認展開
}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:#1AA094;
}
.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>