mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
<wxs src="../wxs/utils.wxs" module="utils" />
|
|
|
|
<button
|
|
id="{{ id }}"
|
|
class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, unclickable: disabled || loading }]) }}"
|
|
|
|
open-type="{{ openType }}"
|
|
hover-class="van-button--active hover-class"
|
|
lang="{{ lang }}"
|
|
session-from="{{ sessionFrom }}"
|
|
send-message-title="{{ sendMessageTitle }}"
|
|
send-message-path="{{ sendMessagePath }}"
|
|
send-message-img="{{ sendMessageImg }}"
|
|
show-message-card="{{ showMessageCard }}"
|
|
app-parameter="{{ appParameter }}"
|
|
aria-label="{{ ariaLabel }}"
|
|
|
|
bindtap="onClick"
|
|
bindgetuserinfo="bindGetUserInfo"
|
|
bindcontact="bindContact"
|
|
bindgetphonenumber="bindGetPhoneNumber"
|
|
binderror="bindError"
|
|
bindlaunchapp="bindLaunchApp"
|
|
bindopensetting="bindOpenSetting"
|
|
>
|
|
<van-loading
|
|
wx:if="{{ loading }}"
|
|
custom-class="loading-class"
|
|
size="{{ size === 'mini' ? '14px' : '20px' }}"
|
|
color="{{ type === 'default' ? '#c9c9c9' : '' }}"
|
|
/>
|
|
<slot wx:else />
|
|
</button>
|