123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- <template>
- <view class="content">
- <!-- #ifdef MP -->
- <image class="bg-img" :src="/static/img/img09.png" mode=" scaleToFill"></image>
- <view class="logo-img-box">
- <image class="logo-img" src="/static/img/img10.png" mode=" aspectFit"></image>
- <button class="userInfo" type="warn" open-type="getUserInfo" @getuserinfo="userInfoData">
- <text class="iconfont iconweixin"></text>
- <text>微信授权登录</text>
- </button>
- </view>
- <!-- #endif -->
- <view class="Mask" v-show="MaskShow">
- <view class="Mask-box">
- <view class="title">申请获取您的手机号</view>
- <view class="text">为了方便您的取货和我们的送货,并获取更多优惠活动,需要您的手机授权</view>
- <view class="btn_box">
- <button class="weixin" @click="ToIndex()">取消</button>
- <button class="weixin" open-type="getPhoneNumber" @getphonenumber="PhoneNumber">手机号授权</button>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- // #ifdef H5
- import { loginWinxin } from '@/utils/wxAuthorized';
- // #endif
- // #ifdef MP-WEIXIN
- import { wechatMpAuth } from '@/api/wx';
- // #endif
- import { mapMutations } from 'vuex';
- import { getUserInfo, bangding } from '@/api/login.js';
- export default {
- data() {
- return {
- userInfo: {}, //授权用户信息
- code: '', //授权code
- loding: false, //判断是否在点击中
- MaskShow: false // 手机号授权弹窗
- };
- },
- onLoad(option) {
- this.loadData();
- },
- methods: {
- loadData() {
- // #ifdef H5
- loginWinxin();
- // #endif
- },
- // #ifndef H5
- // 用户确认授权
- userInfoData(e) {
- const that = this;
- // #ifdef MP-WEIXIN
- if (!this.loding) {
- wx.getUserProfile({
- desc: '用于完善会员资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
- success: res => {
- that.userInfo = res;
- that.loadMp();
- },
- fail: err => {
- console.log('getUserProfile出错', err);
- }
- });
- }
- // #endif
- },
- // #endif
- // #ifdef MP-WEIXIN
- loadMp(option) {
- let obj = this;
- obj.loding = true;
- // 获取登录授权页数据
- let user = obj.userInfo;
- // 获取推广人id
- let spread_spid = uni.getStorageSync('spread') || '';
- // let spread_code = uni.getStorageSync('spread_code') || '';
- uni.showLoading({
- title: '授权中',
- mask: true
- });
- wx.login({
- success(e) {
- wechatMpAuth({
- code: e.code,
- iv: user.iv,
- encryptedData: user.encryptedData,
- spread_spid: spread_spid,
- // #ifdef MP
- spread_code: spread_code
- // #endif
- })
- .then(({ data }) => {
- obj.loding = false;
- obj.wchatAuth(data);
- console.log(data);
- })
- .catch(e => {
- obj.loding = false;
- uni.hideLoading();
- });
- },
- fill: function(e) {
- obj.loding = false;
- console.log(e);
- }
- });
- },
- wchatAuth(data) {
- let obj = this;
- // 保存token
- uni.setStorageSync('token', data.token);
- // 获取用户基础信息
- getUserInfo({})
- .then(e => {
- uni.hideLoading();
- obj.login();
- // 保存返回用户数据
- obj.setUserInfo(e.data);
- // obj.ToIndex();
- if(+e.data.is_real!=1){
- uni.showModal({
- title: '提示',
- content: '为保护未成年人,未实名认证不可购买商品!',
- showCancel: false,
- success: res => {
- uni.navigateTo({
- url: '/pages/user/approve',
- });
- },
- });
- }else {
- obj.ToIndex();
- }
- })
- .catch(e => {
- uni.hideLoading();
- });
- },
- // #endif
- ToIndex() {
- let obj = this;
- let ur = uni.getStorageSync('present') || '/pages/index/index';
- // 用于处理缓存bug
- if (ur == 'pages/product/product') {
- ur = '/pages/index/index';
- }
- uni.switchTab({
- url: ur,
- fail(e) {
- uni.navigateTo({
- url: ur,
- fail(e) {
- uni.navigateTo({
- url: '/pages/index/index'
- });
- }
- });
- }
- });
- },
- // 绑定手机号
- PhoneNumber(e) {
- let obj = this;
- obj.MaskShow = false;
- (obj.iv = e.detail.iv), (obj.encryptedData = e.detail.encryptedData);
- uni.setStorageSync('code', obj.code);
- bangding({
- flag: 1,
- cache_key: obj.cache_key,
- code: obj.code,
- iv: obj.iv,
- encryptedData: obj.encryptedData
- }).then(function(e) {
- if (e.data.is_bind == 1) {
- console.log('bangding1');
- bangding({
- flag: 1,
- cache_key: obj.cache_key,
- code: obj.code,
- iv: obj.iv,
- encryptedData: obj.encryptedData,
- step: 1
- })
- .then(function(e) {
- // 获取用户基础信息
- obj.GetUser();
- obj.$api.msg(e.msg);
- obj.$nextTick(function() {
- obj.ToIndex();
- });
- })
- .catch(e => {
- console.log(e);
- });
- } else {
- console.log('bangding2');
- obj.$api.msg(e.msg);
- // 获取用户基础信息
- obj.GetUser();
- obj.$api.msg(e.msg);
- obj.$nextTick(function() {
- obj.ToIndex();
- });
- }
- });
- },
- GetUser() {
- // 获取用户基础信息
- getUserInfo({})
- .then(({ data }) => {
- this.setUserInfo(data);
- console.log(data, 11);
- console.log(uni.getStorageSync('userInfo'), 55);
- })
- .catch(e => {
- console.log(e);
- });
- }
- }
- };
- </script>
- <style lang="scss">
- page,
- .content {
- height: 100%;
- }
- .Mask {
- position: fixed;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(51, 51, 51, 0.7);
- .Mask-box {
- margin: auto;
- margin-top: 320rpx;
- padding: 50rpx 30rpx;
- width: 90%;
- height: 450rpx;
- top: 500rpx;
- left: 10%;
- background-color: #ffffff;
- border-radius: 15rpx;
- .title {
- text-align: center;
- font-size: 35rpx;
- font-weight: 700;
- }
- .text {
- font-size: 30rpx;
- color: #848484;
- padding-top: 50rpx;
- }
- .btn_box {
- margin: 70rpx 0 0 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- }
- }
- .weixin {
- // background: linear-gradient(90deg, rgba(36, 214, 78, 1), rgba(45, 187, 89, 1));
- background: $base-color;
- width: 40%;
- color: #ffffff;
- border-radius: 50rpx;
- border: none;
- margin: 0 20rpx;
- }
- .bg-img,
- .logo-img-box {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- .logo-img {
- margin-top: 20vh;
- margin-left: 176rpx;
- width: 385rpx;
- height: 394rpx;
- }
- .userInfo {
- margin: 0 100rpx;
- margin-top: 50rpx;
- color: #ffffff;
- border-radius: 99rpx;
- background-color: $base-color !important;
- }
- </style>
|