| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306 |
- <template>
- <view>
- <view class="Popup" v-if="isShowAuth && code">
- <view class="logo-auth"><image :src="logoUrl" mode="aspectFit"></image></view>
- <view class="title">授权提醒</view>
- <view class="tip">请授权头像等信息,以便为您提供更好的服务</view>
- <view class="bottom flex">
- <view class="item" @click="close">随便逛逛</view>
- <!-- #ifdef APP-PLUS -->
- <button class="item grant" @click="setUserInfo">去授权</button>
- <!-- #endif -->
- <!-- #ifdef MP -->
- <button v-if="canUseGetUserProfile" class="item grant" hover-class="none" @tap="getUserProfile">去授权</button>
- <button v-else class="item grant" type="primary" open-type="getUserInfo" lang="zh_CN" @getuserinfo="setUserInfo">去授权</button>
- <!-- #endif -->
- </view>
- </view>
- <view class="mask" v-if="isShowAuth && code" @click="close"></view>
- </view>
- </template>
- <script>
- const app = getApp();
- import Cache from '../utils/cache';
- import { getLogo } from '../api/public';
- import { LOGO_URL } from '../config/cache';
- import { mapGetters } from 'vuex';
- import Routine from '../libs/routine';
- export default {
- name: 'Authorize',
- props: {
- isAuto: {
- type: Boolean,
- default: true
- },
- isGoIndex: {
- type: Boolean,
- default: true
- },
- isShowAuth: {
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- logoUrl: app.globalData.routine_logo,
- canUseGetUserProfile: false,
- code: null
- };
- },
- computed: mapGetters(['isLogin', 'userInfo']),
- watch: {
- isLogin(n) {
- console.log(n, '判断是否登录');
- n === true && this.$emit('onLoadFun', this.userInfo);
- },
- isShowAuth(n) {
- if (n) {
- uni.showLoading({
- title: '正在登录中'
- });
- Routine.getCode()
- .then(code => {
- uni.hideLoading();
- this.code = code;
- })
- .catch(e => {
- uni.hideLoading();
- uni.showToast({
- title: '登录失败',
- duration: 2000
- });
- });
- } else {
- this.code = null;
- }
- }
- },
- created() {
- if (wx.getUserProfile) {
- this.canUseGetUserProfile = true;
- }
- this.getLogoUrl();
- this.setAuthStatus();
- uni.$on('update', data => {
- this.logoUrl = data.login_logo;
- });
- },
- mounted: function() {
- this.$nextTick(() => {
- this.logoUrl = app.globalData.login_logo;
- });
- },
- methods: {
- setAuthStatus() {
- Routine.authorize()
- .then(res => {
- console.log('获取授权信息',res);
- // #ifdef MP-TOUTIAO
- console.log("获取授权信息toutiao")
- this.getUserInfo();
- // #endif
- // #ifdef MP-WEIXIN
- if (res.islogin === false) {
- this.$emit('onLoadFun', this.userInfo);
- }
- // #endif
- })
- .catch(res => {
- if (this.isAuto) {
- this.$emit('authColse', true);
- }
- });
- },
- getUserInfo(code) {
- Routine.getUserInfo()
- .then(res => {
- console.log(res, '授权数据');
- let userInfo = res.userInfo;
- //#ifndef MP-TOUTIAO
- userInfo.code = code;
- //#endif
- userInfo.spread_spid = this.$Cache.get('spread') || app.globalData.spid; //获取推广人ID
- userInfo.spread_code = app.globalData.code; //获取推广人分享二维码ID
- Routine.authUserInfo(userInfo)
- .then(res => {
- uni.hideLoading();
- this.$emit('authColse', false);
- this.$emit('onLoadFun', this.userInfo);
- })
- .catch(res => {
- uni.hideLoading();
- uni.showToast({
- title: res.msg,
- icon: 'none',
- duration: 2000
- });
- });
- })
- .catch(res => {
- uni.hideLoading();
- });
- },
- getUserProfile() {
- let self = this;
- Routine.getUserProfile()
- .then(res => {
- let userInfo = res.userInfo;
- userInfo.code = this.code;
- userInfo.spread_spid = app.globalData.spid; //获取推广人ID
- userInfo.spread_code = app.globalData.code; //获取推广人分享二维码ID
- Routine.authUserInfo(userInfo)
- .then(res => {
- if (res.data.key !== undefined && res.data.key) {
- uni.hideLoading();
- self.authKey = res.data.key;
- self.isPhoneBox = true;
- } else {
- uni.hideLoading();
- let time = res.data.expires_time - self.$Cache.time();
- self.$store.commit('LOGIN', {
- token: res.data.token,
- time: time
- });
- }
- })
- .catch(res => {
- uni.hideLoading();
- uni.showToast({
- title: res.msg,
- icon: 'none',
- duration: 2000
- });
- });
- })
- .catch(res => {
- uni.hideLoading();
- });
- },
- setUserInfo() {
- uni.showLoading({
- title: '正在登录中'
- });
- this.getUserInfo(this.code);
- this.$emit('authColse', false);
- },
- getLogoUrl() {
- this.logoUrl = app.globalData.routine_logo;
- // let that = this;
- // if (Cache.has(LOGO_URL)) {
- // this.logoUrl = Cache.get(LOGO_URL);
- // return;
- // }
- // getLogo().then(res=>{
- // that.logoUrl = res.data.logo_url
- // Cache.set(LOGO_URL,that.logoUrl);
- // })
- },
- close() {
- let pages = getCurrentPages(),
- currPage = pages[pages.length - 1];
- if (this.isGoIndex) {
- uni.switchTab({
- url: '/pages/index/index'
- });
- } else {
- this.$emit('authColse', false);
- }
- // if (currPage && currPage.isShowAuth != undefined){
- // currPage.isShowAuth = true;
- // }
- }
- }
- };
- </script>
- <style scoped lang="scss">
- .Popup {
- width: 500rpx;
- background-color: #fff;
- position: fixed;
- top: 50%;
- left: 50%;
- margin-left: -250rpx;
- transform: translateY(-50%);
- z-index: 1000;
- }
- .Popup {
- .logo-auth {
- z-index: -1;
- position: absolute;
- left: 50%;
- top: 0%;
- transform: translate(-50%, -50%);
- width: 150rpx;
- height: 150rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- border: 8rpx solid #fff;
- border-radius: 50%;
- background: #fff;
- }
- image {
- height: 42rpx;
- margin-top: -54rpx;
- }
- }
- .Popup .title {
- font-size: 28rpx;
- color: #000;
- text-align: center;
- margin-top: 30rpx;
- }
- .Popup .tip {
- font-size: 22rpx;
- color: #555;
- padding: 0 24rpx;
- margin-top: 25rpx;
- }
- .Popup .bottom .item {
- width: 50%;
- height: 80rpx;
- background-color: #eeeeee;
- text-align: center;
- line-height: 80rpx;
- font-size: 24rpx;
- color: #666;
- margin-top: 54rpx;
- }
- .Popup .bottom .item.on {
- width: 100%;
- }
- .flex {
- display: flex;
- }
- .Popup .bottom .item.grant {
- font-size: 28rpx;
- color: #fff;
- font-weight: bold;
- background-color: #e93323;
- border-radius: 0;
- padding: 0;
- }
- .mask {
- position: fixed;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.65);
- z-index: 999;
- }
- </style>
|