index.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <template>
  2. <uni-shadow-root class="vant-dropdown-menu-index"><view class="van-dropdown-menu van-dropdown-menu--top-bottom">
  3. <view v-for="(item,index) in (itemListData)" :key="item.index" :data-index="index" :class="utils.bem('dropdown-menu__item', { disabled: item.disabled })" @click="onTitleTap">
  4. <view :class="(item.titleClass)+' '+(utils.bem('dropdown-menu__title', { active: item.showPopup, down: item.showPopup === (direction === 'down') }))" :style="item.showPopup ? 'color:' + activeColor : ''">
  5. <view class="van-ellipsis">
  6. {{ computed.displayTitle(item) }}
  7. </view>
  8. </view>
  9. </view>
  10. <slot></slot>
  11. </view></uni-shadow-root>
  12. </template>
  13. <wxs src="../wxs/utils.wxs" module="utils"></wxs><wxs src="./index.wxs" module="computed"></wxs>
  14. <script>
  15. global['__wxRoute'] = 'vant/dropdown-menu/index'
  16. import { VantComponent } from '../common/component';
  17. import { addUnit } from '../common/utils';
  18. let ARRAY = [];
  19. VantComponent({
  20. field: true,
  21. relation: {
  22. name: 'dropdown-item',
  23. type: 'descendant',
  24. linked(target) {
  25. this.children.push(target);
  26. this.updateItemListData();
  27. },
  28. unlinked(target) {
  29. this.children = this.children.filter((child) => child !== target);
  30. this.updateItemListData();
  31. }
  32. },
  33. props: {
  34. activeColor: {
  35. type: String,
  36. observer: 'updateChildrenData'
  37. },
  38. overlay: {
  39. type: Boolean,
  40. value: true,
  41. observer: 'updateChildrenData'
  42. },
  43. zIndex: {
  44. type: Number,
  45. value: 10
  46. },
  47. duration: {
  48. type: Number,
  49. value: 200,
  50. observer: 'updateChildrenData'
  51. },
  52. direction: {
  53. type: String,
  54. value: 'down',
  55. observer: 'updateChildrenData'
  56. },
  57. closeOnClickOverlay: {
  58. type: Boolean,
  59. value: true,
  60. observer: 'updateChildrenData'
  61. },
  62. closeOnClickOutside: {
  63. type: Boolean,
  64. value: true
  65. }
  66. },
  67. data: {
  68. itemListData: []
  69. },
  70. beforeCreate() {
  71. const { windowHeight } = wx.getSystemInfoSync();
  72. this.windowHeight = windowHeight;
  73. this.children = [];
  74. ARRAY.push(this);
  75. },
  76. destroyed() {
  77. ARRAY = ARRAY.filter(item => item !== this);
  78. },
  79. methods: {
  80. updateItemListData() {
  81. this.setData({
  82. itemListData: this.children.map((child) => child.data)
  83. });
  84. },
  85. updateChildrenData() {
  86. this.children.forEach((child) => {
  87. child.updateDataFromParent();
  88. });
  89. },
  90. toggleItem(active) {
  91. this.children.forEach((item, index) => {
  92. const { showPopup } = item.data;
  93. if (index === active) {
  94. item.toggle();
  95. }
  96. else if (showPopup) {
  97. item.toggle(false, { immediate: true });
  98. }
  99. });
  100. },
  101. close() {
  102. this.children.forEach((child) => {
  103. child.toggle(false, { immediate: true });
  104. });
  105. },
  106. getChildWrapperStyle() {
  107. const { zIndex, direction } = this.data;
  108. return this.getRect('.van-dropdown-menu').then((rect) => {
  109. const { top = 0, bottom = 0 } = rect;
  110. const offset = direction === 'down' ? bottom : this.windowHeight - top;
  111. let wrapperStyle = `z-index: ${zIndex};`;
  112. if (direction === 'down') {
  113. wrapperStyle += `top: ${addUnit(offset)};`;
  114. }
  115. else {
  116. wrapperStyle += `bottom: ${addUnit(offset)};`;
  117. }
  118. return wrapperStyle;
  119. });
  120. },
  121. onTitleTap(event) {
  122. const { index } = event.currentTarget.dataset;
  123. const child = this.children[index];
  124. if (!child.data.disabled) {
  125. ARRAY.forEach(menuItem => {
  126. if (menuItem &&
  127. menuItem.data.closeOnClickOutside &&
  128. menuItem !== this) {
  129. menuItem.close();
  130. }
  131. });
  132. this.toggleItem(index);
  133. }
  134. }
  135. }
  136. });
  137. export default global['__wxComponents']['vant/dropdown-menu/index']
  138. </script>
  139. <style platform="mp-weixin">
  140. @import '../common/index.css';.van-dropdown-menu{display:-webkit-flex;display:flex;-webkit-user-select:none;user-select:none;height:50px;height:var(--dropdown-menu-height,50px);background-color:#fff;background-color:var(--dropdown-menu-background-color,#fff)}.van-dropdown-menu__item{display:-webkit-flex;display:flex;-webkit-flex:1;flex:1;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;min-width:0}.van-dropdown-menu__item:active{opacity:.7}.van-dropdown-menu__item--disabled:active{opacity:1}.van-dropdown-menu__item--disabled .van-dropdown-menu__title{color:#969799;color:var(--dropdown-menu-title-disabled-text-color,#969799)}.van-dropdown-menu__title{position:relative;box-sizing:border-box;max-width:100%;padding:0 8px;padding:var(--dropdown-menu-title-padding,0 8px);color:#323233;color:var(--dropdown-menu-title-text-color,#323233);font-size:15px;font-size:var(--dropdown-menu-title-font-size,15px);line-height:18px;line-height:var(--dropdown-menu-title-line-height,18px)}.van-dropdown-menu__title:after{position:absolute;top:50%;right:-4px;margin-top:-5px;border-color:transparent transparent currentcolor currentcolor;border-style:solid;border-width:3px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:.8;content:""}.van-dropdown-menu__title--active{color:#1989fa;color:var(--dropdown-menu-title-active-text-color,#1989fa)}.van-dropdown-menu__title--down:after{margin-top:-1px;-webkit-transform:rotate(135deg);transform:rotate(135deg)}
  141. </style>