123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- <template>
- <view class="van-dropdown-menu van-dropdown-menu--top-bottom">
- <view :data-index="index" :class="utils.bem('dropdown-menu__item', { disabled: item.disabled })" @tap="onTitleTap" v-for="(item, index) in itemListData" :key="index">
- <view
- :class="item.titleClass + ' ' + utils.bem('dropdown-menu__title', { active: item.showPopup, down: item.showPopup === (direction === 'down') })"
- :style="item.showPopup ? 'color:' + activeColor : ''"
- >
- <view class="van-ellipsis">
- {{ computed.displayTitle(item) }}
- </view>
- </view>
- </view>
- <slot />
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
- <script module="computed" lang="wxs" src="@/node_modules/@vant/weapp/dist/dropdown-menu/index.wxs"></script>
- <script>
- import { VantComponent } from '../common/component';
- import { addUnit } from '../common/utils';
- let ARRAY = [];
- export default {
- data() {
- return {
- itemListData: []
- };
- },
- field: true,
- '../dropdown-item/index': {
- name: 'dropdown-item',
- type: 'descendant',
- current: 'dropdown-menu',
- linked() {
- this.updateItemListData();
- },
- unlinked() {
- this.updateItemListData();
- }
- },
- props: {
- activeColor: {
- type: String
- },
- overlay: {
- type: Boolean,
- default: true
- },
- zIndex: {
- type: Number,
- default: 10
- },
- duration: {
- type: Number,
- default: 200
- },
- direction: {
- type: String,
- default: 'down'
- },
- closeOnClickOverlay: {
- type: Boolean,
- default: true
- },
- closeOnClickOutside: {
- type: Boolean,
- default: true
- }
- },
- beforeCreate() {
- const { windowHeight } = uni.getSystemInfoSync();
- this.windowHeight = windowHeight;
- ARRAY.push(this);
- },
- destroyed() {
- ARRAY = ARRAY.filter((item) => item !== this);
- },
- methods: {
- updateItemListData() {
- this.setData({
- itemListData: this.children.map((child) => child.data)
- });
- },
- updateChildrenData() {
- this.children.forEach((child) => {
- child.updateDataFromParent();
- });
- },
- toggleItem(active) {
- this.children.forEach((item, index) => {
- const { showPopup } = item.data;
- if (index === active) {
- item.toggle();
- } else if (showPopup) {
- item.toggle(false, {
- immediate: true
- });
- }
- });
- },
- close() {
- this.children.forEach((child) => {
- child.toggle(false, {
- immediate: true
- });
- });
- },
- getChildWrapperStyle() {
- const { zIndex, direction } = this;
- return this.getRect('.van-dropdown-menu').then((rect) => {
- const { top = 0, bottom = 0 } = rect;
- const offset = direction === 'down' ? bottom : this.windowHeight - top;
- let wrapperStyle = `z-index: ${zIndex};`;
- if (direction === 'down') {
- wrapperStyle += `top: ${addUnit(offset)};`;
- } else {
- wrapperStyle += `bottom: ${addUnit(offset)};`;
- }
- return wrapperStyle;
- });
- },
- onTitleTap(event) {
- const { index } = event.currentTarget.dataset;
- const child = this.children[index];
- if (!child.data.disabled) {
- ARRAY.forEach((menuItem) => {
- if (menuItem && menuItem.data.closeOnClickOutside && menuItem !== this) {
- menuItem.close();
- }
- });
- this.toggleItem(index);
- }
- }
- },
- watch: {
- activeColor: {
- handler: function () {
- this.children.forEach((child) => {
- child.updateDataFromParent();
- });
- },
- immediate: true
- },
- overlay: {
- handler: function () {
- this.children.forEach((child) => {
- child.updateDataFromParent();
- });
- },
- immediate: true
- },
- duration: {
- handler: function () {
- this.children.forEach((child) => {
- child.updateDataFromParent();
- });
- },
- immediate: true
- },
- direction: {
- handler: function () {
- this.children.forEach((child) => {
- child.updateDataFromParent();
- });
- },
- immediate: true
- },
- closeOnClickOverlay: {
- handler: function () {
- this.children.forEach((child) => {
- child.updateDataFromParent();
- });
- },
- immediate: true
- }
- }
- };
- </script>
- <style>
- @import './index.css';
- </style>
|