mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(Button): fix click not work (#2892)
This commit is contained in:
parent
f088e3e6da
commit
d073ea2767
@ -71,6 +71,8 @@ VantComponent({
|
||||
if (!this.data.loading) {
|
||||
this.$emit('click');
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
noop() {}
|
||||
}
|
||||
});
|
||||
|
@ -15,13 +15,13 @@
|
||||
show-message-card="{{ showMessageCard }}"
|
||||
app-parameter="{{ appParameter }}"
|
||||
aria-label="{{ ariaLabel }}"
|
||||
bindtap="{{ !disabled ? onClick : null }}"
|
||||
bindgetuserinfo="{{ !disabled ? bindGetUserInfo : null }}"
|
||||
bindcontact="{{ !disabled ? bindContact : null }}"
|
||||
bindgetphonenumber="{{ !disabled ? bindGetPhoneNumber : null }}"
|
||||
binderror="{{ !disabled ? bindError : null }}"
|
||||
bindlaunchapp="{{ !disabled ? bindLaunchApp : null}}"
|
||||
bindopensetting="{{ !disabled ? bindOpenSetting : null }}"
|
||||
bindtap="{{ !disabled ? 'onClick' : 'noop' }}"
|
||||
bindgetuserinfo="{{ !disabled ? 'bindGetUserInfo' : 'noop' }}"
|
||||
bindcontact="{{ !disabled ? 'bindContact' : 'noop' }}"
|
||||
bindgetphonenumber="{{ !disabled ? 'bindGetPhoneNumber' : 'noop' }}"
|
||||
binderror="{{ !disabled ? 'bindError' : 'noop' }}"
|
||||
bindlaunchapp="{{ !disabled ? 'bindLaunchApp' : 'noop' }}"
|
||||
bindopensetting="{{ !disabled ? 'bindOpenSetting' : 'noop' }}"
|
||||
>
|
||||
<block wx:if="{{ loading }}">
|
||||
<van-loading
|
||||
|
Loading…
x
Reference in New Issue
Block a user