| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 | <template><uni-shadow-root class="vant-share-sheet-index"><van-popup round class="van-share-sheet" :show="show" position="bottom" :overlay="overlay" :duration="duration" :z-index="zIndex" :overlay-style="overlayStyle" :close-on-click-overlay="closeOnClickOverlay" :safe-area-inset-bottom="safeAreaInsetBottom" :root-portal="rootPortal" @close="onClose" @click-overlay="onClickOverlay">  <view class="van-share-sheet__header">    <view class="van-share-sheet__title">      <slot name="title"></slot>    </view>    <view v-if="title" class="van-share-sheet__title">{{ title }}</view>    <view class="van-share-sheet__description">      <slot name="description"></slot>    </view>    <view v-if="description" class="van-share-sheet__description">      {{ description }}    </view>  </view>  <block v-if="computed.isMulti(options)">    <options v-for="(item,index) in (options)" :key="item.index" :show-border="index !== 0" :options="item" @select="onSelect"></options>  </block>  <options v-else :options="options" @select="onSelect"></options>  <button type="button" class="van-share-sheet__cancel" @click="onCancel">    {{ cancelText }}  </button></van-popup></uni-shadow-root></template><wxs src="./index.wxs" module="computed"></wxs><script>import VanPopup from '../popup/index.vue'import Options from './options.vue'global['__wxVueOptions'] = {components:{'van-popup': VanPopup,'options': Options}}global['__wxRoute'] = 'vant/share-sheet/index'import { VantComponent } from '../common/component';VantComponent({    props: {        // whether to show popup        show: Boolean,        // overlay custom style        overlayStyle: String,        // z-index        zIndex: {            type: Number,            value: 100,        },        title: String,        cancelText: {            type: String,            value: '取消',        },        description: String,        options: {            type: Array,            value: [],        },        overlay: {            type: Boolean,            value: true,        },        safeAreaInsetBottom: {            type: Boolean,            value: true,        },        closeOnClickOverlay: {            type: Boolean,            value: true,        },        duration: {            type: null,            value: 300,        },        rootPortal: {            type: Boolean,            value: false,        },    },    methods: {        onClickOverlay() {            this.$emit('click-overlay');        },        onCancel() {            this.onClose();            this.$emit('cancel');        },        onSelect(event) {            this.$emit('select', event.detail);        },        onClose() {            this.$emit('close');        },    },});export default global['__wxComponents']['vant/share-sheet/index']</script><style platform="mp-weixin">@import '../common/index.css';.van-share-sheet__header{padding:12px 16px 4px;text-align:center}.van-share-sheet__title{color:#323233;font-size:14px;font-weight:400;line-height:20px;margin-top:8px}.van-share-sheet__title:empty,.van-share-sheet__title:not(:empty)+.van-share-sheet__title{display:none}.van-share-sheet__description{color:#969799;display:block;font-size:12px;line-height:16px;margin-top:8px}.van-share-sheet__description:empty,.van-share-sheet__description:not(:empty)+.van-share-sheet__description{display:none}.van-share-sheet__cancel{background:#fff;border:none;box-sizing:initial;display:block;font-size:16px;height:auto;line-height:48px;padding:0;text-align:center;width:100%}.van-share-sheet__cancel:before{background-color:#f7f8fa;content:" ";display:block;height:8px}.van-share-sheet__cancel:after{display:none}.van-share-sheet__cancel:active{background-color:#f2f3f5}</style>
 |