123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view>
- <view class="title">
- 平安E家小程序需要获得您的用户信息
- </view>
- <image src="../../static/empower_image@2x.png" style="width: 100%;height: 503rpx;margin-top: 48rpx;"></image>
- <button class="btn" open-type="getUserInfo" @getuserinfo="login">授权并登陆</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- // 授权登录
- login(e) {
- console.log(e)
- uni.login({
- provider: 'weixin',
- success: (res)=> {
- console.log(res);
- this.http.httpRequest("/user/userlogin", 'get', {
- code: res.code,
- nickname: e.detail.userInfo.nickName,
- avatar: e.detail.userInfo.avatarUrl,
- invite_id:1
- },true).then((res)=>{
- console.log(res)
- })
- }
- });
- }
- }
- }
- </script>
- <style>
- .title {
- width: 504rpx;
- height: 118rpx;
- text-align: center;
- margin: 0 auto;
- font-size: 40rpx;
- color: rgba(51, 51, 51, 1);
- margin-top: 246rpx;
- font-family: PingFang SC;
- font-weight: 400;
- }
- .btn {
- width: 702rpx;
- height: 88rpx;
- background: rgba(41, 138, 253, 1);
- color: rgba(255, 255, 255, 1);
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: bold;
- margin-top: 170rpx;
- }
- </style>
|