|
@@ -3,47 +3,61 @@
|
|
|
<view class="title">
|
|
|
平安E家小程序需要获得您的用户信息
|
|
|
</view>
|
|
|
- <image src="../../static/authorization.png" style="width: 100%;height: 503rpx;margin-top: 48rpx;"></image>
|
|
|
- <button class="btn" @getuserinfo="login">授权并登陆</button>
|
|
|
+ <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:{
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
// 授权登录
|
|
|
- login(){
|
|
|
-
|
|
|
+ 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{
|
|
|
+ .title {
|
|
|
width: 504rpx;
|
|
|
height: 118rpx;
|
|
|
text-align: center;
|
|
|
margin: 0 auto;
|
|
|
font-size: 40rpx;
|
|
|
- color:rgba(51,51,51,1);
|
|
|
+ color: rgba(51, 51, 51, 1);
|
|
|
margin-top: 246rpx;
|
|
|
- font-family:PingFang SC;
|
|
|
- font-weight:400;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
}
|
|
|
- .btn{
|
|
|
+
|
|
|
+ .btn {
|
|
|
width: 702rpx;
|
|
|
height: 88rpx;
|
|
|
- background:rgba(41,138,253,1);
|
|
|
- color:rgba(255,255,255,1);
|
|
|
+ background: rgba(41, 138, 253, 1);
|
|
|
+ color: rgba(255, 255, 255, 1);
|
|
|
font-size: 36rpx;
|
|
|
- font-family:PingFang SC;
|
|
|
- font-weight:bold;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-weight: bold;
|
|
|
margin-top: 170rpx;
|
|
|
}
|
|
|
-
|
|
|
</style>
|