更新记录
1.0.1(2022-11-22)
下载此版本
更新使用文档
1.0.0(2022-11-22)
下载此版本
适配微信新版获取用户头像、昵称信息
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
× |
× |
√ |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
使用说明
使用方法:
<template>
<view class="login-page">
<!-- 授权登录按钮 -->
<view class="submit-btn" @tap.stop="openAuthorizationModal">
授权登录
</view>
<wx-user-info-modal
v-model="showAuthorizationModal"
@updated="updatedUserInfoEvent"
></wx-user-info-modal>
</view>
</template>
<script>
import WxUserInfoModal from '@/uni_modules/tuniaoui-wx-user-info/components/tuniaoui-wx-user-info/tuniaoui-wx-user-info.vue'
export default {
components: { WxUserInfoModal },
data() {
return {
showAuthorizationModal: false
}
},
onLoad() {
},
methods: {
// 打开获取用户信息弹框
openAuthorizationModal() {
this.showAuthorizationModal = true
},
// 获取到的用户信息
updatedUserInfoEvent(info) {
console.log('获取到的用户信息', info)
},
}
}
</script>
<style>
.login-page {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
/* 授权按钮 */
.submit-btn {
width: 100%;
background-color: #05C160;
color: #FFFFFF;
margin-top: 60rpx;
border-radius: 10rpx;
padding: 25rpx;
font-size: 32rpx;
display: flex;
align-items: center;
justify-content: center;
margin: 30rpx;
}
</style>
参数说明:
参数 |
说明 |
v-model |
弹出、关闭设置用户信息弹框 |