fix(button): 修复type为getUserInfo且wx.getUserProfile可用时,lang参数无效问题 (#4250)

This commit is contained in:
yanqifeng 2021-06-07 10:09:06 +08:00 committed by GitHub
parent e12ad16e37
commit 710a0cf327
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
},