index.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <view v-if="showWrapper" :class="utils.bem('dropdown-item', direction)" :style="wrapperStyle">
  3. <van-popup
  4. :show="showPopup"
  5. :custom-style="'position: absolute;' + popupStyle"
  6. overlay-style="position: absolute;"
  7. :overlay="overlay"
  8. :position="direction === 'down' ? 'top' : 'bottom'"
  9. :duration="transition ? duration : 0"
  10. :close-on-click-overlay="closeOnClickOverlay"
  11. @enter="onOpen"
  12. @leave="onClose"
  13. @close="toggle"
  14. @after-enter="onOpened"
  15. @after-leave="onClosed"
  16. >
  17. <van-cell
  18. :data-option="item"
  19. :class="utils.bem('dropdown-item__option', { active: item.value === value })"
  20. clickable
  21. :icon="item.icon"
  22. @tap.native="onOptionTap($event, { option: item })"
  23. v-for="(item, index) in options"
  24. :key="index"
  25. >
  26. <view slot="title" class="van-dropdown-item__title" :style="item.value === value ? 'color:' + activeColor : ''">
  27. {{ item.text }}
  28. </view>
  29. <van-icon v-if="item.value === value" name="success" class="van-dropdown-item__icon" :color="activeColor" />
  30. </van-cell>
  31. <slot />
  32. </van-popup>
  33. </view>
  34. </template>
  35. <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
  36. <script>
  37. 'use strict';
  38. Object.defineProperty(exports, '__esModule', {
  39. value: true
  40. });
  41. var component_1 = require('../common/component');
  42. component_1.VantComponent({
  43. field: true,
  44. relation: {
  45. name: 'dropdown-menu',
  46. type: 'ancestor',
  47. current: 'dropdown-item',
  48. linked: function () {
  49. this.updateDataFromParent();
  50. }
  51. },
  52. props: {
  53. value: {
  54. type: null,
  55. observer: 'rerender'
  56. },
  57. title: {
  58. type: String,
  59. observer: 'rerender'
  60. },
  61. disabled: Boolean,
  62. titleClass: {
  63. type: String,
  64. observer: 'rerender'
  65. },
  66. options: {
  67. type: Array,
  68. value: [],
  69. observer: 'rerender'
  70. },
  71. popupStyle: String
  72. },
  73. data: {
  74. transition: true,
  75. showPopup: false,
  76. showWrapper: false,
  77. displayTitle: ''
  78. },
  79. methods: {
  80. rerender: function () {
  81. var that = this;
  82. this.$nextTick(function () {
  83. if (that.parent) {
  84. that.parent.updateItemListData();
  85. }
  86. });
  87. },
  88. updateDataFromParent: function () {
  89. if (this.parent) {
  90. var _a = this.parent.data;
  91. var overlay = _a.overlay;
  92. var duration = _a.duration;
  93. var activeColor = _a.activeColor;
  94. var closeOnClickOverlay = _a.closeOnClickOverlay;
  95. var direction = _a.direction;
  96. this.setData({
  97. overlay: overlay,
  98. duration: duration,
  99. activeColor: activeColor,
  100. closeOnClickOverlay: closeOnClickOverlay,
  101. direction: direction
  102. });
  103. }
  104. },
  105. onOpen: function () {
  106. this.$emit('open');
  107. },
  108. onOpened: function () {
  109. this.$emit('opened');
  110. },
  111. onClose: function () {
  112. this.$emit('close');
  113. },
  114. onClosed: function () {
  115. this.$emit('closed');
  116. this.setData({
  117. showWrapper: false
  118. });
  119. },
  120. onOptionTap: function (event) {
  121. var option = event.currentTarget.dataset.option;
  122. var value = option.value;
  123. var shouldEmitChange = this.value !== value;
  124. this.setData({
  125. showPopup: false,
  126. value: value
  127. });
  128. this.$emit('close');
  129. this.rerender();
  130. if (shouldEmitChange) {
  131. this.$emit('change', value);
  132. }
  133. },
  134. toggle: function (show, options) {
  135. var that = this;
  136. if (options === void 0) {
  137. options = {};
  138. }
  139. var showPopup = this.showPopup;
  140. if (typeof show !== 'boolean') {
  141. show = !showPopup;
  142. }
  143. if (show === showPopup) {
  144. return;
  145. }
  146. this.setData({
  147. transition: !options.immediate,
  148. showPopup: show
  149. });
  150. if (show) {
  151. this.parent.getChildWrapperStyle().then(function (wrapperStyle) {
  152. that.setData({
  153. wrapperStyle: wrapperStyle,
  154. showWrapper: true
  155. });
  156. that.rerender();
  157. });
  158. } else {
  159. this.rerender();
  160. }
  161. }
  162. }
  163. });
  164. </script>
  165. <style>
  166. @import './index.css';
  167. </style>