123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <template>
- <uni-shadow-root class="vant-tree-select-index"><view class="van-tree-select" :style="'height: '+(mainHeight)+'px'">
- <scroll-view scroll-y class="van-tree-select__nav">
- <view v-for="(item,index) in (items)" :key="item.index" :class="'van-ellipsis main-item-class '+(utils.bem('tree-select__nitem', { active: mainActiveIndex === index, disabled: item.disabled }))+' '+(mainActiveIndex === index ? 'main-active-class' : '')+' '+(item.disabled ? 'main-disabled-class' : '')" :data-index="index" @click="onClickNav">
- {{ item.text }}
- </view>
- </scroll-view>
- <scroll-view scroll-y class="van-tree-select__content" :style="'height: '+(itemHeight)+'px'">
- <view v-for="(item,index) in (subItems)" :key="item.id" :class="'van-ellipsis van-hairline--bottom 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" @click="onSelectItem">
- {{ item.text }}
- <van-icon v-if="wxs.isActive(activeId, item.id)" name="checked" size="16px" class="van-tree-select__selected"></van-icon>
- </view>
- </scroll-view>
- </view></uni-shadow-root>
- </template>
- <wxs src="../wxs/utils.wxs" module="utils"></wxs><wxs src="./index.wxs" module="wxs"></wxs>
- <script>
- import VanIcon from '../icon/index.vue'
- global['__wxVueOptions'] = {components:{'van-icon': VanIcon}}
-
- global['__wxRoute'] = 'vant/tree-select/index'
- import { VantComponent } from '../common/component';
- const ITEM_HEIGHT = 44;
- VantComponent({
- classes: [
- 'main-item-class',
- 'content-item-class',
- 'main-active-class',
- 'content-active-class',
- 'main-disabled-class',
- 'content-disabled-class'
- ],
- props: {
- items: Array,
- mainActiveIndex: {
- type: Number,
- value: 0
- },
- activeId: {
- type: [Number, String, Array]
- },
- maxHeight: {
- type: Number,
- value: 300
- }
- },
- data: {
- subItems: [],
- mainHeight: 0,
- itemHeight: 0
- },
- watch: {
- items() {
- this.updateSubItems().then(() => {
- this.updateMainHeight();
- });
- },
- maxHeight() {
- this.updateItemHeight(this.data.subItems);
- this.updateMainHeight();
- },
- mainActiveIndex: 'updateSubItems'
- },
- methods: {
- // 当一个子项被选择时
- onSelectItem(event) {
- const { item } = event.currentTarget.dataset;
- if (!item.disabled) {
- this.$emit('click-item', item);
- }
- },
- // 当一个导航被点击时
- onClickNav(event) {
- const { index } = event.currentTarget.dataset;
- const item = this.data.items[index];
- if (!item.disabled) {
- this.$emit('click-nav', { index });
- }
- },
- // 更新子项列表
- updateSubItems() {
- const { items, mainActiveIndex } = this.data;
- const { children = [] } = items[mainActiveIndex] || {};
- this.updateItemHeight(children);
- return this.set({ subItems: children });
- },
- // 更新组件整体高度,根据最大高度和当前组件需要展示的高度来决定
- updateMainHeight() {
- const { items = [], subItems = [] } = this.data;
- const maxHeight = Math.max(items.length * ITEM_HEIGHT, subItems.length * ITEM_HEIGHT);
- this.set({ mainHeight: Math.min(maxHeight, this.data.maxHeight) });
- },
- // 更新子项列表高度,根据可展示的最大高度和当前子项列表的高度决定
- updateItemHeight(subItems) {
- const itemHeight = Math.min(subItems.length * ITEM_HEIGHT, this.data.maxHeight);
- return this.set({ itemHeight });
- }
- }
- });
- export default global['__wxComponents']['vant/tree-select/index']
- </script>
- <style platform="mp-weixin">
- @import '../common/index.css';.van-tree-select{position:relative;font-size:14px;-webkit-user-select:none;user-select:none}.van-tree-select__nav{position:absolute;top:0;bottom:0;left:0;width:35%;min-width:120px;background-color:#fafafa}.van-tree-select__nitem{position:relative;padding:0 9px 0 15px;line-height:44px}.van-tree-select__nitem--active:after{position:absolute;top:0;bottom:0;left:0;width:3.6px;background-color:#f44;content:""}.van-tree-select__nitem--active{font-weight:700;background-color:#fff}.van-tree-select__nitem--disabled{color:#999}.van-tree-select__content{width:65%;padding-left:15px;margin-left:35%;background-color:#fff;box-sizing:border-box}.van-tree-select__item{position:relative;font-weight:700;line-height:44px}.van-tree-select__item--active{color:#f44}.van-tree-select__item--disabled{color:#999}.van-tree-select__selected{position:absolute;top:0;right:15px;bottom:0;height:24px;margin:auto 0;line-height:24px}
- </style>
|