index.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <template>
  2. <view class="van-tree-select" :style="'height: ' + utils.addUnit(height)">
  3. <scroll-view scroll-y class="van-tree-select__nav">
  4. <van-sidebar :active-key="mainActiveIndex" @change="onClickNav" custom-class="van-tree-select__nav__inner">
  5. <van-sidebar-item
  6. custom-class="main-item-class"
  7. active-class="main-active-class"
  8. disabled-class="main-disabled-class"
  9. :title="item.text"
  10. :disabled="item.disabled"
  11. v-for="(item, index) in items"
  12. :key="index"
  13. ></van-sidebar-item>
  14. </van-sidebar>
  15. </scroll-view>
  16. <scroll-view scroll-y class="van-tree-select__content">
  17. <slot name="content" />
  18. <view
  19. :class="
  20. 'van-ellipsis content-item-class ' +
  21. utils.bem('tree-select__item', { active: wxs.isActive(activeId, item.id), disabled: item.disabled }) +
  22. ' ' +
  23. (wxs.isActive(activeId, item.id) ? 'content-active-class' : '') +
  24. ' ' +
  25. (item.disabled ? 'content-disabled-class' : '')
  26. "
  27. :data-item="item"
  28. @tap="onSelectItem"
  29. v-for="(item, index) in subItems"
  30. :key="index"
  31. >
  32. {{ item.text }}
  33. <van-icon v-if="wxs.isActive(activeId, item.id)" name="checked" size="16px" class="van-tree-select__selected" />
  34. </view>
  35. </scroll-view>
  36. </view>
  37. </template>
  38. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
  39. <script module="wxs" lang="wxs" src="@/node_modules/@vant/weapp/dist/tree-select/index.wxs"></script>
  40. <script>
  41. import { VantComponent } from '../common/component';
  42. export default {
  43. data() {
  44. return {
  45. subItems: []
  46. };
  47. },
  48. classes: ['main-item-class', 'content-item-class', 'main-active-class', 'content-active-class', 'main-disabled-class', 'content-disabled-class'],
  49. props: {
  50. items: {
  51. type: Array
  52. },
  53. activeId: null,
  54. mainActiveIndex: {
  55. type: Number,
  56. default: 0
  57. },
  58. height: {
  59. type: [Number, String],
  60. default: 300
  61. },
  62. max: {
  63. type: Number,
  64. default: Infinity
  65. }
  66. },
  67. methods: {
  68. // 当一个子项被选择时
  69. onSelectItem(event) {
  70. const { item } = event.currentTarget.dataset;
  71. const isArray = Array.isArray(this.activeId);
  72. // 判断有没有超出右侧选择的最大数
  73. const isOverMax = isArray && this.activeId.length >= this.max;
  74. // 判断该项有没有被选中, 如果有被选中,则忽视是否超出的条件
  75. const isSelected = isArray ? this.activeId.indexOf(item.id) > -1 : this.activeId === item.id;
  76. if (!item.disabled && (!isOverMax || isSelected)) {
  77. this.$emit('click-item', item);
  78. }
  79. },
  80. // 当一个导航被点击时
  81. onClickNav(event) {
  82. const index = event.detail;
  83. const item = this.items[index];
  84. if (!item.disabled) {
  85. this.$emit('click-nav', {
  86. index
  87. });
  88. }
  89. },
  90. // 更新子项列表
  91. updateSubItems() {
  92. const { items, mainActiveIndex } = this;
  93. const { children = [] } = items[mainActiveIndex] || {};
  94. return this.set({
  95. subItems: children
  96. });
  97. }
  98. },
  99. watch: {
  100. items: {
  101. handler: function () {
  102. const { items, mainActiveIndex } = this;
  103. const { children = [] } = items[mainActiveIndex] || {};
  104. return this.set({
  105. subItems: children
  106. });
  107. },
  108. immediate: true,
  109. deep: true
  110. },
  111. mainActiveIndex: {
  112. handler: function () {
  113. const { items, mainActiveIndex } = this;
  114. const { children = [] } = items[mainActiveIndex] || {};
  115. return this.set({
  116. subItems: children
  117. });
  118. },
  119. immediate: true
  120. }
  121. }
  122. };
  123. </script>
  124. <style>
  125. @import './index.css';
  126. </style>