123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <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" :loading="isLoading">授权并登陆</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- isLoading:false,//按钮加载绑定值
- }
- },
- methods: {
- // 授权登录
- login(e) {
- console.log(e)
- uni.showLoading({
- mask:true,
- title:'加载中'
- })
- // 调起微信授权
- uni.login({
- provider: 'weixin',
- success: (res)=> {
- this.http.httpRequest("/wxapplet/ownersid/WeChatLogin", 'post', {
- phoneNumBer: uni.getStorageSync('phoneNumber'),
- loginName: e.detail.userInfo.nickName,
- avatar: e.detail.userInfo.avatarUrl?e.detail.userInfo.avatarUrl:'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1588928936819&di=1face6fba29d82c9bca1913661d43321&imgtype=0&src=http%3A%2F%2Fimg.qqzhi.com%2Fuploads%2F2019-04-11%2F212617551.jpg',
- cardNo:uni.getStorageSync('idNumber')
- },true).then((res)=>{
- if(res.code==0){
- uni.setStorageSync('createBy',res.data[0].createBy)
- uni.switchTab({
- url:"../index/index"
- })
- uni.hideLoading()
- }else{
- uni.hideLoading()
- uni.showToast({
- title:res.msg,
- "icon":'none'
- })
- }
- }).catch(()=>{
- uni.hideLoading()
- })
- }
- });
- }
- }
- }
- </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>
|