fix(Button): fix click not work (#2892)

This commit is contained in:
rex 2020-03-20 16:03:30 +08:00 committed by GitHub
parent f088e3e6da
commit d073ea2767
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 8 deletions

View File

@ -71,6 +71,8 @@ VantComponent({
if (!this.data.loading) { if (!this.data.loading) {
this.$emit('click'); this.$emit('click');
} }
} },
noop() {}
} }
}); });

View File

@ -15,13 +15,13 @@
show-message-card="{{ showMessageCard }}" show-message-card="{{ showMessageCard }}"
app-parameter="{{ appParameter }}" app-parameter="{{ appParameter }}"
aria-label="{{ ariaLabel }}" aria-label="{{ ariaLabel }}"
bindtap="{{ !disabled ? onClick : null }}" bindtap="{{ !disabled ? 'onClick' : 'noop' }}"
bindgetuserinfo="{{ !disabled ? bindGetUserInfo : null }}" bindgetuserinfo="{{ !disabled ? 'bindGetUserInfo' : 'noop' }}"
bindcontact="{{ !disabled ? bindContact : null }}" bindcontact="{{ !disabled ? 'bindContact' : 'noop' }}"
bindgetphonenumber="{{ !disabled ? bindGetPhoneNumber : null }}" bindgetphonenumber="{{ !disabled ? 'bindGetPhoneNumber' : 'noop' }}"
binderror="{{ !disabled ? bindError : null }}" binderror="{{ !disabled ? 'bindError' : 'noop' }}"
bindlaunchapp="{{ !disabled ? bindLaunchApp : null}}" bindlaunchapp="{{ !disabled ? 'bindLaunchApp' : 'noop' }}"
bindopensetting="{{ !disabled ? bindOpenSetting : null }}" bindopensetting="{{ !disabled ? 'bindOpenSetting' : 'noop' }}"
> >
<block wx:if="{{ loading }}"> <block wx:if="{{ loading }}">
<van-loading <van-loading