feat(Button): add chooseavatar event (#4976)

This commit is contained in:
MyHdg 2022-07-23 22:36:33 +08:00 committed by GitHub
parent 878814c98f
commit 6997c225a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -25,6 +25,7 @@
binderror="onError"
bindlaunchapp="onLaunchApp"
bindopensetting="onOpenSetting"
bindchooseavatar="onChooseAvatar"
>
<block wx:if="{{ loading }}">
<van-loading

View File

@ -46,5 +46,13 @@ export const button = Behavior({
onOpenSetting(event: WechatMiniprogram.ButtonOpenSetting) {
this.triggerEvent('opensetting', event.detail);
},
onChooseAvatar(
event: WechatMiniprogram.CustomEvent<
WechatMiniprogram.GeneralCallbackResult & { avatarUrl: string }
>
) {
this.triggerEvent('chooseavatar', event.detail);
},
},
});