123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <template>
- <view class="van-tree-select" :style="'height: ' + utils.addUnit(height)">
- <scroll-view scroll-y class="van-tree-select__nav">
- <van-sidebar :active-key="mainActiveIndex" @change="onClickNav" custom-class="van-tree-select__nav__inner">
- <van-sidebar-item
- custom-class="main-item-class"
- active-class="main-active-class"
- disabled-class="main-disabled-class"
- :title="item.text"
- :disabled="item.disabled"
- v-for="(item, index) in items"
- :key="index"
- ></van-sidebar-item>
- </van-sidebar>
- </scroll-view>
- <scroll-view scroll-y class="van-tree-select__content">
- <slot name="content" />
- <view
- :class="
- 'van-ellipsis content-item-class ' +
- utils.bem('tree-select__item', { active: wxs.isActive(activeId, item.id), disabled: item.disabled }) +
- ' ' +
- (wxs.isActive(activeId, item.id) ? 'content-active-class' : '') +
- ' ' +
- (item.disabled ? 'content-disabled-class' : '')
- "
- :data-item="item"
- @tap="onSelectItem"
- v-for="(item, index) in subItems"
- :key="index"
- >
- {{ item.text }}
- <van-icon v-if="wxs.isActive(activeId, item.id)" name="checked" size="16px" class="van-tree-select__selected" />
- </view>
- </scroll-view>
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
- <script module="wxs" lang="wxs" src="@/node_modules/@vant/weapp/dist/tree-select/index.wxs"></script>
- <script>
- import { VantComponent } from '../common/component';
- export default {
- data() {
- return {
- subItems: []
- };
- },
- classes: ['main-item-class', 'content-item-class', 'main-active-class', 'content-active-class', 'main-disabled-class', 'content-disabled-class'],
- props: {
- items: {
- type: Array
- },
- activeId: null,
- mainActiveIndex: {
- type: Number,
- default: 0
- },
- height: {
- type: [Number, String],
- default: 300
- },
- max: {
- type: Number,
- default: Infinity
- }
- },
- methods: {
- // 当一个子项被选择时
- onSelectItem(event) {
- const { item } = event.currentTarget.dataset;
- const isArray = Array.isArray(this.activeId);
- // 判断有没有超出右侧选择的最大数
- const isOverMax = isArray && this.activeId.length >= this.max;
- // 判断该项有没有被选中, 如果有被选中,则忽视是否超出的条件
- const isSelected = isArray ? this.activeId.indexOf(item.id) > -1 : this.activeId === item.id;
- if (!item.disabled && (!isOverMax || isSelected)) {
- this.$emit('click-item', item);
- }
- },
- // 当一个导航被点击时
- onClickNav(event) {
- const index = event.detail;
- const item = this.items[index];
- if (!item.disabled) {
- this.$emit('click-nav', {
- index
- });
- }
- },
- // 更新子项列表
- updateSubItems() {
- const { items, mainActiveIndex } = this;
- const { children = [] } = items[mainActiveIndex] || {};
- return this.set({
- subItems: children
- });
- }
- },
- watch: {
- items: {
- handler: function () {
- const { items, mainActiveIndex } = this;
- const { children = [] } = items[mainActiveIndex] || {};
- return this.set({
- subItems: children
- });
- },
- immediate: true,
- deep: true
- },
- mainActiveIndex: {
- handler: function () {
- const { items, mainActiveIndex } = this;
- const { children = [] } = items[mainActiveIndex] || {};
- return this.set({
- subItems: children
- });
- },
- immediate: true
- }
- }
- };
- </script>
- <style>
- @import './index.css';
- </style>
|