| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 |
- <template>
- <view class="page">
- <view class="system-height" :style="{height:statusBarHeight}"></view>
- <!-- #ifdef MP -->
- <view class="title-bar" style="height: 43px;">
- <view class="icon" @click="back" v-if="!isHome">
- <image src="../static/left.png"></image>
- </view>
- <view class="icon" @click="home" v-else>
- <image src="../static/home.png"></image>
- </view>
- 账户登录
- </view>
- <!-- #endif -->
- <view class="wechat_login">
- <view class="img">
- <image src="../static/wechat_login.png" mode="widthFix"></image>
- </view>
- <view class="btn-wrapper">
- <!-- #ifdef H5 -->
- <!-- <button hover-class="none" @click="wechatLogin" class="bg-green btn1">微信登录</button> -->
- <button hover-class="none" @click="isUp = true" class="btn2">手机号登录</button>
- <!-- #endif -->
- <!-- #ifdef MP -->
- <button hover-class="none" @tap="getUserProfile" class="bg-green btn1">微信登录</button>
- <!-- #endif -->
- </view>
- </view>
- <block v-if="isUp">
- <mobileLogin :isUp="isUp" @close="maskClose" :authKey="authKey" @wechatPhone="wechatPhone"></mobileLogin>
- </block>
- <block v-if="isPhoneBox">
- <routinePhone :logoUrl="logoUrl" :isPhoneBox="isPhoneBox" @close="bindPhoneClose" :authKey="authKey">
- </routinePhone>
- </block>
- </view>
- </template>
- <script>
- const app = getApp();
- let statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
- import mobileLogin from '@/components/login_mobile/index.vue'
- import routinePhone from '@/components/login_mobile/routine_phone.vue'
- import {
- mapGetters
- } from "vuex";
- import {
- getLogo,
- getUserPhone
- } from '@/api/public';
- import {
- LOGO_URL,
- EXPIRES_TIME,
- USER_INFO,
- STATE_R_KEY
- } from '@/config/cache';
- import {
- getUserInfo
- } from '@/api/user.js'
- import Routine from '@/libs/routine';
- import wechat from "@/libs/wechat";
- export default {
- data() {
- return {
- isUp: false,
- phone: '',
- statusBarHeight: statusBarHeight,
- isHome: false,
- isPhoneBox: false,
- logoUrl: '',
- code: '',
- authKey: '',
- options: '',
- userInfo: {},
- codeNum: 0
- }
- },
- components: {
- mobileLogin,
- routinePhone
- },
- onLoad(options) {
- getLogo().then(res => {
- this.logoUrl = res.data.logoUrl
- })
- let that = this
- // #ifdef H5
- document.body.addEventListener("focusout", () => {
- setTimeout(() => {
- const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop ||
- 0;
- window.scrollTo(0, Math.max(scrollHeight - 1, 0));
- }, 100);
- });
- const {
- code,
- state,
- scope
- } = options;
- this.options = options
- // 获取确认授权code
- this.code = code || ''
- this.authKey = this.$Cache.get('snsapiKey');
- //if(!code) location.replace(decodeURIComponent(decodeURIComponent(option.query.back_url)));
- if (code && this.options.scope !== 'snsapi_base') {
- let spread = app.globalData.spid ? app.globalData.spid : 0;
- //公众号授权登录回调 wechatAuth(code, Cache.get("spread"), loginType)
- wechat.auth(code, spread).then(res => {
- if (res.type === 'register') {
- this.authKey = res.key;
- this.isUp = true
- }
- if (res.type === 'login') {
- this.$store.commit('LOGIN', {
- token: res.token
- });
- this.$store.commit("SETUID", res.uid);
- this.getUserInfo();
- this.wechatPhone();
- //location.replace(decodeURIComponent(decodeURIComponent(option.query.back_url)));
- }
- }).catch(error => {});
- }
- // #endif
- let pages = getCurrentPages();
- // let prePage = pages[pages.length - 2];
- // if (prePage.route == 'pages/order_addcart/order_addcart') {
- // this.isHome = true
- // } else {
- // this.isHome = false
- // }
- },
- methods: {
- back() {
- uni.navigateBack();
- },
- home() {
- uni.switchTab({
- url: '/pages/index/index'
- })
- },
- // 弹窗关闭
- maskClose() {
- this.isUp = false
- },
- bindPhoneClose(data) {
- if (data.isStatus) {
- this.isPhoneBox = false
- this.$util.Tips({
- title: '登录成功',
- icon: 'success'
- }, {
- tab: 3
- })
- } else {
- this.isPhoneBox = false
- }
- },
- // #ifdef MP
- // 小程序获取手机号码
- getphonenumber(e) {
- uni.showLoading({
- title: '正在登录中'
- });
- Routine.getCode()
- .then(code => {
- this.getUserPhoneNumber(e.detail.encryptedData, e.detail.iv, code);
- })
- .catch(error => {
- uni.$emit('closePage', false)
- uni.hideLoading();
- });
- },
- // 小程序获取手机号码回调
- getUserPhoneNumber(encryptedData, iv, code) {
- getUserPhone({
- encryptedData: encryptedData,
- iv: iv,
- code: code,
- type: 'routine',
- key: this.authKey
- })
- .then(res => {
- this.$store.commit('LOGIN', {
- token: res.data.token
- });
- this.$store.commit("SETUID", res.data.uid);
- this.getUserInfo();
- this.$util.Tips({
- title: '登录成功',
- icon: 'success'
- }, {
- tab: 3
- })
- })
- .catch(res => {
- uni.hideLoading();
- that.$util.Tips({
- title: res
- });
- });
- },
- /**
- * 获取个人用户信息
- */
- getUserInfo: function() {
- let that = this;
- getUserInfo().then(res => {
- uni.hideLoading();
- that.userInfo = res.data
- that.$store.commit("UPDATE_USERINFO", res.data);
- that.$util.Tips({
- title: '登录成功',
- icon: 'success'
- }, {
- tab: 3
- })
- });
- },
- getUserProfile() {
- let self = this;
- uni.showLoading({
- title: '正在登录中'
- });
- Routine.getUserProfile()
- .then(res => {
- Routine.getCode()
- .then(code => {
- self.getWxUser(code, res);
- })
- .catch(res => {
- uni.hideLoading();
- });
- })
- .catch(res => {
- uni.hideLoading();
- });
- },
- getWxUser(code, res) {
- let self = this
- let userInfo = res.userInfo;
- userInfo.code = code;
- userInfo.spread_spid = app.globalData.spid; //获取推广人ID
- userInfo.spread_code = app.globalData.code; //获取推广人分享二维码ID
- userInfo.avatar = userInfo.userInfo.avatarUrl;
- userInfo.city = userInfo.userInfo.city;
- userInfo.country = userInfo.userInfo.country;
- userInfo.nickName = userInfo.userInfo.nickName;
- userInfo.province = userInfo.userInfo.province;
- userInfo.sex = userInfo.userInfo.gender;
- userInfo.type = 'routine'
- Routine.authUserInfo(userInfo.code, userInfo)
- .then(res => {
- self.authKey = res.data.key;
- if (res.data.type === 'register') {
- uni.hideLoading();
- self.isPhoneBox = true
- }
- if (res.data.type === 'login') {
- uni.hideLoading();
- self.$store.commit('LOGIN', {
- token: res.data.token
- });
- self.$store.commit("SETUID", res.data.uid);
- self.getUserInfo();
- self.$util.Tips({
- title: res,
- icon: 'success'
- }, {
- tab: 3
- })
- }
- })
- .catch(res => {
- uni.hideLoading();
- uni.showToast({
- title: res,
- icon: 'none',
- duration: 2000
- });
- });
- },
- // #endif
- // #ifdef H5
- // 获取url后面的参数
- getQueryString(name) {
- var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
- var reg_rewrite = new RegExp("(^|/)" + name + "/([^/]*)(/|$)", "i");
- var r = window.location.search.substr(1).match(reg);
- var q = window.location.pathname.substr(1).match(reg_rewrite);
- if (r != null) {
- return unescape(r[2]);
- } else if (q != null) {
- return unescape(q[2]);
- } else {
- return null;
- }
- },
- // 公众号登录
- wechatLogin() {
- if (!this.code && this.options.scope !== 'snsapi_base') {
- this.$wechat.oAuth('snsapi_userinfo', '/pages/users/wechat_login/index');
- } else {
- // if (this.authKey) {
- // this.isUp = true;
- // }
- this.isUp = true;
- }
- },
- // 输入手机号后的回调
- wechatPhone() {
- this.$Cache.clear('snsapiKey');
- if (this.options.back_url) {
- let url = uni.getStorageSync('snRouter');
- url = url.indexOf('/pages/index/index') != -1 ? '/' : url;
- if (url.indexOf('/pages/users/wechat_login/index') !== -1) {
- url = '/';
- }
- if (!url) {
- url = '/pages/index/index';
- }
- this.isUp = false
- uni.showToast({
- title: '登录成功',
- icon: 'none'
- })
- setTimeout(res => {
- location.href = url
- }, 800)
- } else {
- uni.navigateBack()
- }
- }
- // #endif
- }
- }
- </script>
- <style lang="scss">
- page {
- background: #fff;
- height: 100%;
- }
- .page {
- background: #fff;
- height: 100%;
- }
- .wechat_login {
- padding: 72rpx 34rpx;
- .img image {
- width: 100%;
- }
- .btn-wrapper {
- margin-top: 86rpx;
- padding: 0 66rpx;
- button {
- width: 100%;
- height: 86rpx;
- line-height: 86rpx;
- margin-bottom: 40rpx;
- border-radius: 120rpx;
- font-size: 30rpx;
- &.btn1 {
- color: #fff;
- }
- &.btn2 {
- color: #666666;
- border: 1px solid #666666;
- }
- }
- }
- }
- .title-bar {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 36rpx;
- }
- .icon {
- position: absolute;
- left: 30rpx;
- top: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 86rpx;
- height: 86rpx;
- image {
- width: 50rpx;
- height: 50rpx;
- }
- }
- </style>
|