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