index.vue
2.74 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
<template>
<view class="ncc-tree-select">
<u-input type="select" :select-open="selectShow" v-model="innerValue" :placeholder="placeholder"
@click="openSelect"></u-input>
<tree-select v-model="selectShow" @confirm="selectConfirm" :default-value="defaultValue" :options="options"
:multiple="multiple" :lastLevel="lastLevel" :lastLevelKey="lastLevelKey" :lastLevelValue="lastLevelValue" :props="props">
</tree-select>
</view>
</template>
<script>
import treeSelect from './tree-select';
export default {
name: 'ncc-tree-select',
model: {
prop: 'value',
event: 'input'
},
components: {
treeSelect
},
props: {
value: {
default: ''
},
options: {
type: Array,
default: () => []
},
placeholder: {
type: String,
default: '请选择'
},
props: {
type: Object,
default: () => ({
label: 'fullName',
value: 'id',
children: 'children'
})
},
disabled: {
type: Boolean,
default: false
},
multiple: {
type: Boolean,
default: false
},
// 只能选择最后一层的数值
lastLevel: {
type: Boolean,
default: false
},
// 只能选择最后一层的数值时,需要根据lastLevelKey来判断是否最后一层
lastLevelKey: {
type: String,
default: "hasChildren"
},
lastLevelValue: {
default: false
},
},
data() {
return {
selectShow: false,
innerValue: '',
defaultValue: []
}
},
watch: {
options() {
this.setDefault()
},
value(val) {
this.setDefault()
}
},
created() {
this.setDefault()
},
methods: {
setDefault() {
if (!this.value || !this.options.length) return this.innerValue = ''
const value = this.value.split(',')
let label = ''
const loop = (value, list) => {
for (let i = 0; i < list.length; i++) {
let item = list[i]
if (value === item[this.props.value]) {
label += (!label ? '' : ',') + item[this.props.label]
break
}
if (item.children && Array.isArray(item.children) && item.children.length) {
loop(value, item.children)
}
}
}
for (let i = 0; i < value.length; i++) {
loop(value[i], this.options)
}
this.innerValue = label
this.defaultValue = value
},
openSelect() {
if (this.disabled) return
this.selectShow = true
},
selectConfirm(e) {
let label = ''
let value = []
for (let i = 0; i < e.length; i++) {
label += (!label ? '' : ',') + e[i][this.props.label]
value.push(e[i][this.props.value])
}
this.defaultValue = value
this.innerValue = label
this.$emit('input', value.join())
this.$emit('change', e)
}
}
}
</script>
<style lang="scss" scoped>
.ncc-tree-select {
width: 100%;
}
</style>