index.vue
4.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<template>
<el-select :value="valueTitle" ref="carrerSelect" :disabled="$store.state.business.Edit" style="width:100%"
:placeholder="placeholder"
clearable @clear="clearHandle">
<el-option :value="valueTitle" :label="valueTitle" class="options">
<el-tree id="tree-option" ref="selectTree" :accordion="accordion" :data="options"
:check-strictly="true"
:props="props" :node-key="props.value" :default-expanded-keys="defaultExpandedKey"
:filter-node-method="filterNode" @node-click="handleNodeClick">
</el-tree>
</el-option>
</el-select>
</template>
<script>
export default {
name: 'el-tree-select',
props: {
/* 配置项 */
props: {
type: Object,
default: () => {
return {
value: 'DCODE', // ID字段名
label: 'DNAME', // 显示名称
children: 'children', // 子级字段名
}
},
},
options: {
type: Array,
default: () => {
return []
},
},
/* 初始值 */
value: {
type: String,
default: () => {
return null
},
},
/* 自动收起 */
accordion: {
type: Boolean,
default: () => {
return true
},
},
placeholder: {
type: String,
default: () => {
return '请选择'
},
},
},
data () {
return {
valueId: this.value, // 初始值
valueTitle: '',
defaultExpandedKey: [],
}
},
mounted () {
this.initHandle()
},
methods: {
// 初始化值
initHandle () {
if (this.valueId && this.options.length!=0) {
this.valueTitle = this.$refs.selectTree.getNode(this.valueId).data[
this.props.label
] // 初始化显示
this.$refs.selectTree.setCurrentKey(this.valueId) // 设置默认选中
this.defaultExpandedKey = [this.valueId] // 设置默认展开
}
this.initScroll()
},
// 初始化滚动条
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.valueId = node[this.props.value]
this.valueTitle = node[this.props.label]
// this.$emit('getValue', this.valueId)
this.$emit("input", this.valueId);
this.defaultExpandedKey = []
if (!node.children) {
this.$refs.carrerSelect.handleClose()
}
},
// parentId (arr1, id) {
// let _this = this
// var temp = []
// var forFn = function (arr, id) {
// for (var i = 0; i < arr.length; i++) {
// var item = arr[i]
// if (item[_this.props.value] === id) {
// forFn(arr1, item.parentid)
// temp.push(item[_this.props.label])
// break
// } else {
// if (item.children) {
// forFn(item.children, id)
// }
// }
// }
// }
// forFn(arr1, id)
// return temp
// },
// 清除选中
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'))
},
filterNode (value, data) {
if (!value) return true
return data.name.indexOf(value) !== -1
},
},
watch: {
value () {
this.valueId = this.value
this.initHandle()
},
filterText (val) {
this.$refs.selectTree.filter(val)
},
},
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.el-scrollbar .el-scrollbar__view .el-select-dropdown__item {
height: auto;
max-height: 274px;
padding: 0;
overflow: hidden;
overflow-y: auto;
}
.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;
}
.selectInput {
padding: 0 5px;
box-sizing: border-box;
}
</style>