| 1234567891011121314151617181920 |
- <wxs module="utils" src="../wxs/utils.wxs"/>
- <wxs module="computed" src="./options.wxs"/>
- <view class="{{ utils.bem('share-sheet__options', { border: showBorder }) }}">
- <view
- bindtap="onSelect"
- class="van-share-sheet__option"
- data-index="{{ index }}"
- wx:for="{{ options }}"
- wx:key="index"
- >
- <button class="van-share-sheet__button" open-type="{{ item.openType }}">
- <image class="van-share-sheet__icon" src="{{ computed.getIconURL(item.icon) }}"/>
- <view class="van-share-sheet__name" wx:if="{{ item.name }}">{{ item.name }}</view>
- <view class="van-share-sheet__option-description" wx:if="{{ item.description }}">
- {{ item.description }}
- </view>
- </button>
- </view>
- </view>
|