mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(button): 修复type为getUserInfo且wx.getUserProfile可用时,lang参数无效问题 (#4250)
This commit is contained in:
parent
e12ad16e37
commit
710a0cf327
@ -56,11 +56,12 @@ VantComponent({
|
||||
onClick(event: WechatMiniprogram.TouchEvent) {
|
||||
this.$emit('click', event);
|
||||
|
||||
const { canIUseGetUserProfile, openType, getUserProfileDesc } = this.data;
|
||||
const { canIUseGetUserProfile, openType, getUserProfileDesc, lang } = this.data;
|
||||
|
||||
if (openType === 'getUserInfo' && canIUseGetUserProfile) {
|
||||
wx.getUserProfile({
|
||||
desc: getUserProfileDesc || ' ',
|
||||
lang: lang || 'en',
|
||||
complete: (userProfile) => {
|
||||
this.$emit('getuserinfo', userProfile);
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user