123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <template>
- <view v-if="showWrapper" :class="utils.bem('dropdown-item', direction)" :style="wrapperStyle">
- <van-popup
- :show="showPopup"
- :custom-style="'position: absolute;' + popupStyle"
- overlay-style="position: absolute;"
- :overlay="overlay"
- :position="direction === 'down' ? 'top' : 'bottom'"
- :duration="transition ? duration : 0"
- :close-on-click-overlay="closeOnClickOverlay"
- @enter="onOpen"
- @leave="onClose"
- @close="toggle"
- @after-enter="onOpened"
- @after-leave="onClosed"
- >
- <van-cell
- :data-option="item"
- :class="utils.bem('dropdown-item__option', { active: item.value === value })"
- clickable
- :icon="item.icon"
- @tap.native="onOptionTap($event, { option: item })"
- v-for="(item, index) in options"
- :key="index"
- >
- <view slot="title" class="van-dropdown-item__title" :style="item.value === value ? 'color:' + activeColor : ''">
- {{ item.text }}
- </view>
- <van-icon v-if="item.value === value" name="success" class="van-dropdown-item__icon" :color="activeColor" />
- </van-cell>
- <slot />
- </van-popup>
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
- <script>
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- var component_1 = require('../common/component');
- component_1.VantComponent({
- field: true,
- relation: {
- name: 'dropdown-menu',
- type: 'ancestor',
- current: 'dropdown-item',
- linked: function () {
- this.updateDataFromParent();
- }
- },
- props: {
- value: {
- type: null,
- observer: 'rerender'
- },
- title: {
- type: String,
- observer: 'rerender'
- },
- disabled: Boolean,
- titleClass: {
- type: String,
- observer: 'rerender'
- },
- options: {
- type: Array,
- value: [],
- observer: 'rerender'
- },
- popupStyle: String
- },
- data: {
- transition: true,
- showPopup: false,
- showWrapper: false,
- displayTitle: ''
- },
- methods: {
- rerender: function () {
- var that = this;
- this.$nextTick(function () {
- if (that.parent) {
- that.parent.updateItemListData();
- }
- });
- },
- updateDataFromParent: function () {
- if (this.parent) {
- var _a = this.parent.data;
- var overlay = _a.overlay;
- var duration = _a.duration;
- var activeColor = _a.activeColor;
- var closeOnClickOverlay = _a.closeOnClickOverlay;
- var direction = _a.direction;
- this.setData({
- overlay: overlay,
- duration: duration,
- activeColor: activeColor,
- closeOnClickOverlay: closeOnClickOverlay,
- direction: direction
- });
- }
- },
- onOpen: function () {
- this.$emit('open');
- },
- onOpened: function () {
- this.$emit('opened');
- },
- onClose: function () {
- this.$emit('close');
- },
- onClosed: function () {
- this.$emit('closed');
- this.setData({
- showWrapper: false
- });
- },
- onOptionTap: function (event) {
- var option = event.currentTarget.dataset.option;
- var value = option.value;
- var shouldEmitChange = this.value !== value;
- this.setData({
- showPopup: false,
- value: value
- });
- this.$emit('close');
- this.rerender();
- if (shouldEmitChange) {
- this.$emit('change', value);
- }
- },
- toggle: function (show, options) {
- var that = this;
- if (options === void 0) {
- options = {};
- }
- var showPopup = this.showPopup;
- if (typeof show !== 'boolean') {
- show = !showPopup;
- }
- if (show === showPopup) {
- return;
- }
- this.setData({
- transition: !options.immediate,
- showPopup: show
- });
- if (show) {
- this.parent.getChildWrapperStyle().then(function (wrapperStyle) {
- that.setData({
- wrapperStyle: wrapperStyle,
- showWrapper: true
- });
- that.rerender();
- });
- } else {
- this.rerender();
- }
- }
- }
- });
- </script>
- <style>
- @import './index.css';
- </style>
|