mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
<pop-manager
|
|
show="{{ show }}"
|
|
type="center"
|
|
>
|
|
<view class="van-dialog--container">
|
|
<view
|
|
wx:if="{{ title }}"
|
|
class="van-dialog__header"
|
|
>{{ title }}</view>
|
|
<view
|
|
class="van-dialog__content {{ title ? 'van-dialog__content--title' : '' }}"
|
|
>
|
|
<text>{{ message }}</text>
|
|
</view>
|
|
<view
|
|
class="van-dialog__footer {{ buttonsShowVertical ? 'van-dialog__footer--vertical' : 'van-dialog__footer--horizon' }}"
|
|
>
|
|
<block
|
|
wx:for="{{ buttons }}"
|
|
wx:key="{{ item.text }}-{{ item.type }}"
|
|
>
|
|
<van-button
|
|
class="van-dialog__button"
|
|
custom-class="{{ index === 0 ? 'van-dialog__button-inside--first' : 'van-dialog__button-inside' }}"
|
|
data-type="{{ item.type }}"
|
|
data-open-type="{{ item.openType }}"
|
|
open-type="{{ item.openType }}"
|
|
bind:tap="handleButtonClick"
|
|
bind:getuserinfo="handleUserInfoResponse"
|
|
bind:getphonenumber="handlePhoneResponse"
|
|
bind:opensetting="handleOpenSettingResponse"
|
|
>
|
|
<view
|
|
style="color: {{ item.color || '#333' }}"
|
|
>{{ item.text }}</view>
|
|
</van-button>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
</pop-manager>
|