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) {
|
if (!this.data.loading) {
|
||||||
this.$emit('click');
|
this.$emit('click');
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
|
||||||
|
noop() {}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user