mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
<van-popup
|
|
show="{{ show }}"
|
|
overlay="{{ overlay }}"
|
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
|
custom-class="van-actionsheet {{ title ? 'van-actionsheet--withtitle' : '' }}"
|
|
position="bottom"
|
|
bind:close="onClose"
|
|
>
|
|
<view wx:if="{{ title }}" class="van-hairline--top-bottom van-actionsheet__header">
|
|
<view>{{ title }}</view>
|
|
<van-icon custom-class="van-actionsheet__close" name="close" bind:tap="onClose" />
|
|
</view>
|
|
<view wx:else class="van-hairline--bottom">
|
|
<view
|
|
wx:for="{{ actions }}"
|
|
wx:key="index"
|
|
class="van-actionsheet__item van-hairline--top {{ item.disabled || item.loading ? 'van-actionsheet__item--disabled' : '' }} {{ item.className || '' }}"
|
|
data-index="{{ index }}"
|
|
bind:tap="onSelect"
|
|
>
|
|
<block wx:if="{{ !item.loading }}">
|
|
<view class="van-actionsheet__name">{{ item.name }}</view>
|
|
<view class="van-actionsheet__subname" wx:if="{{ item.subname }}">{{ item.subname }}</view>
|
|
</block>
|
|
<van-loading wx:else custom-class="van-actionsheet__loading" size="20px" />
|
|
</view>
|
|
</view>
|
|
<view
|
|
wx:if="{{ cancelText }}"
|
|
class="van-actionsheet__cancel van-hairline--top"
|
|
bind:tap="onCancel"
|
|
>
|
|
{{ cancelText }}
|
|
</view>
|
|
<view wx:else class="van-actionsheet__content">
|
|
<slot />
|
|
</view>
|
|
</van-popup>
|