mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
73 lines
1.4 KiB
Vue
73 lines
1.4 KiB
Vue
<template>
|
|
<div
|
|
:class="b()"
|
|
:style="{ height: height + 'px' }"
|
|
>
|
|
<div :class="b('nav')">
|
|
<div
|
|
v-for="(item, index) in items"
|
|
class="van-ellipsis"
|
|
:class="b('nitem', { active: mainActiveIndex === index })"
|
|
@click="$emit('navclick', index)"
|
|
>
|
|
{{ item.text }}
|
|
</div>
|
|
</div>
|
|
<div :class="b('content')">
|
|
<div
|
|
v-for="item in subItems"
|
|
:key="item.id"
|
|
class="van-ellipsis"
|
|
:class="b('item', {
|
|
active: activeId === item.id,
|
|
disabled: item.disabled
|
|
})"
|
|
@click="onItemSelect(item)"
|
|
>
|
|
{{ item.text }}
|
|
<icon
|
|
v-if="activeId === item.id"
|
|
name="success"
|
|
:class="b('selected')"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import create from '../utils/create';
|
|
|
|
export default create({
|
|
name: 'tree-select',
|
|
|
|
props: {
|
|
items: Array,
|
|
mainActiveIndex: Number,
|
|
activeId: {
|
|
type: [Number, String],
|
|
default: 0
|
|
},
|
|
height: {
|
|
type: Number,
|
|
default: 300
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
subItems() {
|
|
const selectedItem = this.items[this.mainActiveIndex] || {};
|
|
return selectedItem.children || [];
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onItemSelect(data) {
|
|
if (!data.disabled) {
|
|
this.$emit('itemclick', data);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
</script>
|