c463ab87
梁灏
add Cascader
|
1
|
<template>
|
47a7f21d
梁灏
support Cascader
|
2
3
4
5
|
<span>
<ul v-if="data && data.length" :class="[prefixCls + '-menu']">
<Casitem
v-for="item in data"
|
8ac8d1ed
梁灏
修复警告
|
6
|
:key="item"
|
47a7f21d
梁灏
support Cascader
|
7
8
9
10
11
12
13
|
:prefix-cls="prefixCls"
:data="item"
:tmp-item="tmpItem"
@click.native.stop="handleClickItem(item)"
@mouseenter.native.stop="handleHoverItem(item)"></Casitem>
</ul><Caspanel v-if="sublist && sublist.length" :prefix-cls="prefixCls" :data="sublist" :disabled="disabled" :trigger="trigger" :change-on-select="changeOnSelect"></Caspanel>
</span>
|
c463ab87
梁灏
add Cascader
|
14
15
16
|
</template>
<script>
import Casitem from './casitem.vue';
|
47a7f21d
梁灏
support Cascader
|
17
|
import Emitter from '../../mixins/emitter';
|
c463ab87
梁灏
add Cascader
|
18
19
20
|
export default {
name: 'Caspanel',
|
47a7f21d
梁灏
support Cascader
|
21
|
mixins: [ Emitter ],
|
c463ab87
梁灏
add Cascader
|
22
23
24
25
26
|
components: { Casitem },
props: {
data: {
type: Array,
default () {
|
b0893113
jingsam
add eslint
|
27
|
return [];
|
c463ab87
梁灏
add Cascader
|
28
29
|
}
},
|
c463ab87
梁灏
add Cascader
|
30
31
|
disabled: Boolean,
changeOnSelect: Boolean,
|
bd4e3b9b
梁灏
update Cascader
|
32
|
trigger: String,
|
c463ab87
梁灏
add Cascader
|
33
34
35
36
37
|
prefixCls: String
},
data () {
return {
tmpItem: {},
|
47a7f21d
梁灏
support Cascader
|
38
39
|
result: [],
sublist: []
|
b0893113
jingsam
add eslint
|
40
|
};
|
c463ab87
梁灏
add Cascader
|
41
|
},
|
47a7f21d
梁灏
support Cascader
|
42
43
44
45
46
|
watch: {
data () {
this.sublist = [];
}
},
|
c463ab87
梁灏
add Cascader
|
47
48
|
methods: {
handleClickItem (item) {
|
bd4e3b9b
梁灏
update Cascader
|
49
|
if (this.trigger !== 'click' && item.children) return;
|
c463ab87
梁灏
add Cascader
|
50
51
52
|
this.handleTriggerItem(item);
},
handleHoverItem (item) {
|
bd4e3b9b
梁灏
update Cascader
|
53
|
if (this.trigger !== 'hover' || !item.children) return;
|
c463ab87
梁灏
add Cascader
|
54
55
|
this.handleTriggerItem(item);
},
|
bd4e3b9b
梁灏
update Cascader
|
56
|
handleTriggerItem (item, fromInit = false) {
|
c463ab87
梁灏
add Cascader
|
57
58
|
if (item.disabled) return;
|
83b73885
梁灏
fixed #718
|
59
|
// return value back recursion // 向上递归,设置临时选中值(并非真实选中)
|
bd4e3b9b
梁灏
update Cascader
|
60
61
62
|
const backItem = this.getBaseItem(item);
this.tmpItem = backItem;
this.emitUpdate([backItem]);
|
c463ab87
梁灏
add Cascader
|
63
64
|
if (item.children && item.children.length){
this.sublist = item.children;
|
47a7f21d
梁灏
support Cascader
|
65
66
67
68
69
|
this.dispatch('Cascader', 'on-result-change', {
lastValue: false,
changeOnSelect: this.changeOnSelect,
fromInit: fromInit
});
|
c463ab87
梁灏
add Cascader
|
70
71
|
} else {
this.sublist = [];
|
47a7f21d
梁灏
support Cascader
|
72
73
74
75
76
|
this.dispatch('Cascader', 'on-result-change', {
lastValue: true,
changeOnSelect: this.changeOnSelect,
fromInit: fromInit
});
|
c463ab87
梁灏
add Cascader
|
77
|
}
|
c463ab87
梁灏
add Cascader
|
78
79
80
|
},
updateResult (item) {
this.result = [this.tmpItem].concat(item);
|
bd4e3b9b
梁灏
update Cascader
|
81
|
this.emitUpdate(this.result);
|
c463ab87
梁灏
add Cascader
|
82
83
84
85
86
87
88
89
|
},
getBaseItem (item) {
let backItem = Object.assign({}, item);
if (backItem.children) {
delete backItem.children;
}
return backItem;
|
bd4e3b9b
梁灏
update Cascader
|
90
91
92
93
94
95
96
|
},
emitUpdate (result) {
if (this.$parent.$options.name === 'Caspanel') {
this.$parent.updateResult(result);
} else {
this.$parent.$parent.updateResult(result);
}
|
c463ab87
梁灏
add Cascader
|
97
98
|
}
},
|
47a7f21d
梁灏
support Cascader
|
99
100
101
|
mounted () {
this.$on('on-find-selected', (params) => {
const val = params.value;
|
bd4e3b9b
梁灏
update Cascader
|
102
103
104
105
106
107
108
|
let value = [...val];
for (let i = 0; i < value.length; i++) {
for (let j = 0; j < this.data.length; j++) {
if (value[i] === this.data[j].value) {
this.handleTriggerItem(this.data[j], true);
value.splice(0, 1);
this.$nextTick(() => {
|
47a7f21d
梁灏
support Cascader
|
109
110
111
|
this.broadcast('Caspanel', 'on-find-selected', {
value: value
});
|
bd4e3b9b
梁灏
update Cascader
|
112
113
114
115
116
|
});
return false;
}
}
}
|
47a7f21d
梁灏
support Cascader
|
117
118
|
});
this.$on('on-clear', () => {
|
165bb7c9
梁灏
update Cascader
|
119
120
|
this.sublist = [];
this.tmpItem = {};
|
47a7f21d
梁灏
support Cascader
|
121
|
});
|
c463ab87
梁灏
add Cascader
|
122
|
}
|
b0893113
jingsam
add eslint
|
123
124
|
};
</script>
|