123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- <template>
- <el-select v-model="valueTitle" :size="size" :disabled="disabled" :clearable="clearable" :placeholder="placeholderText" @clear="clearHandle">
- <el-option :value="valueTitle" :label="valueTitle" class="options">
- <el-tree id="tree-option"
- ref="selectTree"
- :accordion="accordion"
- :data="optionData"
- :show-checkbox="showCheckbox"
- :props="props"
- highlight-current
- :check-strictly="checkStrictly"
- :check-on-click-node="checkOnClickNode"
- :node-key="props.value"
- :default-expanded-keys="defaultExpandedKey"
- @check-change="handleCheckChange"
- @node-click="handleNodeClick">
- </el-tree>
- </el-option>
- </el-select>
- </template>
- <script>
- export default {
- name: 'el-tree-select',
- props: {
- /* 配置项 */
- props: {
- type: Object,
- default: () => {
- return {
- value: 'id', // ID字段名
- label: 'label', // 显示名称
- children: 'children' // 子级字段名
- }
- }
- },
- /* 选项列表数据(树形结构的对象数组) */
- data: {
- type: Array,
- default: () => { return [] }
- },
- /* 选项列表数据(树形结构的对象数组) */
- list: {
- type: Array,
- default: () => { return null }
- },
- /* 初始值 */
- value: {
- type: String,
- default: () => { return '' }
- },
- /* 初始值 */
- url: {
- type: String,
- default: () => { return null }
- },
- disabled: {
- type: Boolean,
- dafault: () => { return false }
- },
- showCheckbox: {
- type: Boolean,
- dafault: () => { return false }
- },
- /* 初始值 */
- label: {
- type: String,
- default: () => { return '' }
- },
- /* 可清空选项 */
- clearable: {
- type: Boolean,
- default: () => { return true }
- },
- /* 自动收起 */
- accordion: {
- type: Boolean,
- default: () => { return false }
- },
- size: {
- type: String,
- default: () => { return 'small' }
- },
- placeholder: {
- type: String,
- default: () => { return '请选择' }
- },
- isOnlySelectLeaf: {
- type: Boolean,
- default: () => {
- return false
- }
- },
- // 在显示复选框的情况下,是否严格的遵循父子不互相关联的做法,默认为 false
- checkStrictly: {
- type: Boolean,
- default: () => {
- return false
- }
- },
- // 是否在点击节点的时候选中节点,默认值为 false,即只有在点击复选框时才会选中节点。
- checkOnClickNode: {
- type: Boolean,
- default: () => {
- return false
- }
- }
- },
- data () {
- return {
- valueId: this.value, // 初始值
- valueTitle: this.label,
- defaultExpandedKey: [],
- placeholderText: this.placeholder,
- treeList: [],
- valueData: this.data
- }
- },
- created () {
- if (this.url !== null) {
- this.placeholderText = '加载数据中...'
- let interval = setInterval(() => {
- this.placeholderText = this.placeholderText + '.'
- }, 500)
- this.$http({
- url: this.url,
- method: 'get'
- }).then((data) => {
- this.valueData = data
- this.setTreeList(this.valueData)
- this.$nextTick(() => {
- this.initHandle()
- this.placeholderText = this.placeholder
- clearInterval(interval)
- })
- })
- } else {
- this.valueData = this.data
- this.setTreeList(this.valueData)
- }
- },
- methods: {
- setTreeList (datas) { // 遍历树 获取id数组
- for (var i in datas) {
- this.treeList.push(datas[i])
- if (datas[i].children) {
- this.setTreeList(datas[i].children)
- }
- }
- },
- // 初始化值
- initHandle () {
- if (this.valueId) {
- if (this.showCheckbox) {
- let ids = this.valueId.split(',')
- this.$refs.selectTree.setCheckedKeys(ids)
- let titles = []
- ids.forEach((id) => {
- this.treeList.forEach((d) => {
- if (id === d[this.props.value]) {
- titles.push(d[this.props.label])
- }
- })
- })
- this.valueTitle = titles.join(',')
- } else if (this.$refs.selectTree.getNode(this.valueId)) {
- this.valueTitle = this.$refs.selectTree.getNode(this.valueId).data[this.props.label] // 初始化显示
- this.$refs.selectTree.setCurrentKey(this.valueId) // 设置默认选中
- this.defaultExpandedKey = [this.valueId] // 设置默认展开
- }
- }
- this.initScroll()
- },
- getNode (id) {
- return this.$refs.selectTree.getNode(id)
- },
- // 初始化滚动条
- initScroll () {
- this.$nextTick(() => {
- let scrollWrap = document.querySelectorAll('.el-scrollbar .el-select-dropdown__wrap')[0]
- let scrollBar = document.querySelectorAll('.el-scrollbar .el-scrollbar__bar')
- if (scrollWrap) { scrollWrap.style.cssText = 'margin: 0px; max-height: none; overflow: hidden;' }
- if (scrollBar) {
- scrollBar.forEach(ele => {
- // eslint-disable-next-line no-return-assign
- return ele.style.width = 0
- })
- }
- })
- },
- // 切换选项
- handleNodeClick (node) {
- if (this.showCheckbox) {
- return
- }
- if (node['disabled']) {
- // this.$message.warning('节点(' + node[this.props.label] + ')被禁止选择,请重新选择。')
- return
- }
- if (this.isOnlySelectLeaf && node.children.length > 0) {
- this.$message.warning('不能选择根节点(' + node[this.props.label] + ')请重新选择。')
- return
- }
- this.valueTitle = node[this.props.label]
- this.valueId = node[this.props.value]
- this.$emit('getValue', this.valueId, this.valueTitle, node)
- },
- handleCheckChange (data, checked, indeterminate) {
- let nodes = this.$refs.selectTree.getCheckedNodes()
- this.valueTitle = nodes.map((node) => {
- return node[this.props.label]
- }).join(',')
- this.valueId = nodes.map((node) => {
- return node[this.props.value]
- }).join(',')
- this.$emit('getValue', this.valueId, this.valueTitle)
- },
- // 清除选中
- clearHandle () {
- this.valueTitle = ''
- this.valueId = null
- this.defaultExpandedKey = []
- this.clearSelected()
- this.$emit('getValue', null, null, 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
- if (this.value === '' || this.value === null || this.value === undefined) {
- this.clearHandle()
- } else {
- this.initHandle()
- }
- },
- data () {
- this.valueData = this.data
- }
- },
- computed: {
- optionData () {
- if (this.list) {
- let cloneData = JSON.parse(JSON.stringify(this.list)) // 对源数据深度克隆
- return cloneData.filter(father => { // 循环所有项,并添加children属性
- let branchArr = cloneData.filter(child => father.id === child.parentId) // 返回每一项的子级数组
- // eslint-disable-next-line no-unused-expressions
- branchArr.length > 0 ? father.children = branchArr : '' // 给父级添加一个children属性,并赋值
- return father.parentId === '0' // 返回第一层
- })
- } else {
- return this.valueData
- }
- }
- }
- }
- </script>
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style scoped>
- .el-select{
- width: 100%;
- }
- .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;
- }
- /* 开发禁用 */
- /* .el-tree-node:focus>.el-tree-node__content{
- background-color:transparent;
- background-color: #f5f7fa;
- color: #c0c4cc;
- cursor: not-allowed;
- }
- .el-tree-node__content:hover{
- background-color: #f5f7fa;
- } */
- </style>
|