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) {
this.$emit('click');
}
}
},
noop() {}
}
});

View File

@ -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