123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <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 === valueClone })"
- 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 === valueClone ? 'color:' + activeColor : ''">
- {{ item.text }}
- </view>
- <van-icon v-if="item.value === valueClone" name="success" class="van-dropdown-item__icon" :color="activeColor" />
- </van-cell>
- <slot />
- </van-popup>
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
- <script>
- import { VantComponent } from '../common/component';
- export default {
- data() {
- return {
- transition: true,
- showPopup: false,
- showWrapper: false,
- displayTitle: '',
- overlay: '',
- duration: '',
- activeColor: '',
- closeOnClickOverlay: '',
- direction: '',
- wrapperStyle: '',
- valueClone: ''
- };
- },
- field: true,
- '../dropdown-menu/index': {
- name: 'dropdown-menu',
- type: 'ancestor',
- current: 'dropdown-item',
- linked() {
- this.updateDataFromParent();
- }
- },
- props: {
- value: {
- type: null
- },
- title: {
- type: String
- },
- disabled: Boolean,
- titleClass: {
- type: String
- },
- options: {
- type: Array,
- default: () => []
- },
- popupStyle: String
- },
- methods: {
- rerender() {
- this.valueClone = this.clone(this.value);
- this.$nextTick(() => {
- if (this.parent) {
- this.parent.updateItemListData();
- }
- });
- },
- updateDataFromParent() {
- if (this.parent) {
- const { overlay, duration, activeColor, closeOnClickOverlay, direction } = this.parent.data;
- this.setData({
- overlay,
- duration,
- activeColor,
- closeOnClickOverlay,
- direction
- });
- }
- },
- onOpen() {
- this.$emit('open');
- },
- onOpened() {
- this.$emit('opened');
- },
- onClose() {
- this.$emit('close');
- },
- onClosed() {
- this.$emit('closed');
- this.setData({
- showWrapper: false
- });
- },
- onOptionTap(event, _dataset) {
- /* ---处理dataset begin--- */
- this.handleDataset(event, _dataset);
- /* ---处理dataset end--- */
- const { option } = event.currentTarget.dataset;
- const { value } = option;
- const shouldEmitChange = this.value !== value;
- this.setData({
- showPopup: false,
- valueClone: value
- });
- this.$emit('close');
- this.rerender();
- if (shouldEmitChange) {
- this.$emit('change', value);
- }
- },
- toggle(show, options = {}) {
- const { showPopup } = this;
- if (typeof show !== 'boolean') {
- show = !showPopup;
- }
- if (show === showPopup) {
- return;
- }
- this.setData({
- transition: !options.immediate,
- showPopup: show
- });
- if (show) {
- this.parent.getChildWrapperStyle().then((wrapperStyle) => {
- this.setData({
- wrapperStyle,
- showWrapper: true
- });
- this.rerender();
- });
- } else {
- this.rerender();
- }
- }
- },
- watch: {
- value: {
- handler: function () {
- this.valueClone = this.clone(this.value);
- this.$nextTick(() => {
- if (this.parent) {
- this.parent.updateItemListData();
- }
- });
- },
- immediate: true
- },
- title: {
- handler: function () {
- this.valueClone = this.clone(this.value);
- this.$nextTick(() => {
- if (this.parent) {
- this.parent.updateItemListData();
- }
- });
- },
- immediate: true
- },
- titleClass: {
- handler: function () {
- this.valueClone = this.clone(this.value);
- this.$nextTick(() => {
- if (this.parent) {
- this.parent.updateItemListData();
- }
- });
- },
- immediate: true
- },
- options: {
- handler: function () {
- this.valueClone = this.clone(this.value);
- this.$nextTick(() => {
- if (this.parent) {
- this.parent.updateItemListData();
- }
- });
- },
- immediate: true,
- deep: true
- }
- }
- };
- </script>
- <style>
- @import './index.css';
- </style>
|