123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419 |
- <template>
- <view class="body">
- <u-navbar title="登录" bgColor="rgba(255,255,255,0.3)" :leftIconSize="0" titleStyle="font-weight:bold;color:#7a5831"></u-navbar>
- <block>
- <!-- #ifndef MP-WEIXIN -->
- <view class="login-bg">
- <view class="login-card">
- <view class="login-head">
- <image class="logoimg" :src="baseLogo" mode="widthFix"></image>
- </view>
- <view class="login-input login-margin-b">
- <input type="number" v-model="username" placeholder="请输入手机号" />
- </view>
- <view class="login-input">
- <input :password="true" v-model="password" placeholder="请输入密码(6-16位)" />
- </view>
- <view class="cu-bar btn-group margin-top">
- <button class="cu-btn bg-orange shadow-blur round" :loading="loading" @tap="login">{{ loading ? '登录中...' : '登 录' }}</button>
- </view>
- <view class="flex justify-center">
- <view class="text-gray text-sm margin-top-xl" @tap="register">注册新账户</view>
- </view>
- </view>
- </view>
- <!-- #endif -->
- <!-- #ifdef MP-WEIXIN -->
- <view class="logView">
- <button @click="onGetUserProfile" class="logbt">
- <view class="login-head">
- <image class="logoimg" :src="baseLogo" mode="widthFix"></image>
- </view>
- <view class="loginTitile"><text decode="true">请点击微信登录,并授权获取公开信息, 登录后您将获得更多权益</text></view>
- <view style="background-color: #fbb233; width: 200rpx; border-radius: 80rpx" class="cu-btn bg-orange shadow-blur round">
- <text class="cuIcon-lightauto"></text>
- 微信登录
- </view>
- </button>
- <!-- <view class="text-gray text-sm margin-top-xl" @click="changMobileLogin()">手机登录</view> -->
- </view>
- <!-- #endif -->
- </block>
- </view>
- </template>
- <script>
- var _this;
- import { baseLogo } from '../../config/config.js';
- export default {
- data() {
- return {
- loading: false,
- user: [],
- username: '',
- password: '',
- class_id: '',
- ismobile: false,
- group_id: 1,
- code: '',
- baseLogo: baseLogo,
- redirect: ''
- };
- },
- mounted() {
- _this = this;
- },
- onLoad(e) {
- console.log(e);
- if (e.redirect) {
- this.redirect = e.redirect;
- }
- },
- onShow() {
- this.user = this.$common.userInfo();
- console.log('this.user: ', this.user);
- if (typeof this.user == 'undefined' || this.user == '' || this.user == null) {
- } else {
- this.$common.navigateTo('index');
- }
- // #ifdef MP-WEIXIN
- this.wxLogin();
- // #endif
- },
- methods: {
- wxLogin() {
- wx.login({
- success: (res) => {
- this.code = res.code;
- },
- fail: function (error) {
- console.log('login failed ' + error);
- }
- });
- },
- //切换微信登录
- // wechatLogin(){
- // _this.ismobile=false;
- // },
- //切换手机登录
- // changMobileLogin(){
- // _this.ismobile=true;
- // },
- register() {
- this.$common.navigateTo('register');
- },
- login() {
- _this.loading = true;
- if (_this.username == '' || _this.username.length < 11) {
- uni.showToast({
- icon: 'none',
- title: '请输入正确的手机号'
- });
- _this.loading = false;
- return;
- }
- if (_this.password == '') {
- uni.showToast({
- icon: 'none',
- title: '请输入密码'
- });
- _this.loading = false;
- return;
- }
- _this.$api.login(
- {
- account: _this.username,
- password: _this.password
- },
- (data) => {
- //console.log(data);
- if (data.code == 1) {
- _this.loading = false;
- //console.log(data);
- try {
- _this.$db.set('upload', 1);
- _this.$db.set('login', 1);
- _this.$db.set('token', data.data.userinfo.token);
- _this.$db.set('user', data.data.userinfo);
- _this.$db.set('auth', data.data.auth);
- _this.$store.commit('setAccessToken', data.data.userinfo.token);
- _this.$store.commit('setActivityId', 0);
- } catch (e) {}
- _this.$common.successToShow(data.msg, function () {
- // _this.$common.navigateTo('index');
- if (_this.redirect != '') {
- console.log(_this.redirect);
- if (_this.redirect.indexOf('%2F') > 0) {
- _this.redirect = '/' + unescape(_this.redirect);
- }
- _this.$common.navigateTo(_this.redirect);
- return;
- }
- uni.navigateBack();
- });
- } else {
- _this.loading = false;
- uni.showToast({
- duration: 1500,
- icon: 'none',
- title: data.msg
- });
- }
- }
- );
- },
- onGetUserProfile() {
- // uni.showLoading({
- // title:"正在登录中..."
- // })
- var platform = 'wechat';
- var that = this;
- var fid = uni.getStorageSync('parentid') ? uni.getStorageSync('parentid') : '';
- uni.getUserProfile({
- desc: '用于完善会员资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
- success: (res) => {
- console.log(res);
- var invite_id = _this.$db.get('invite_id');
- if (!invite_id) invite_id = 0;
- console.log(invite_id);
- _this.$api.third(
- {
- code: _this.code,
- platform: platform,
- encrypted_data: res.encryptedData,
- iv: res.iv,
- raw_data: res.rawData,
- signature: res.signature,
- invite_id: invite_id,
- appid: 'wx98c89e5f918af88f'
- },
- (data) => {
- console.log(data);
- // console.log(data.data.userinfo)
- var res = data.data;
- if (data.code == 1) {
- this.$common.successToShow('登录成功!');
- try {
- this.$db.set('upload', 1);
- this.$db.set('login', 1);
- this.$db.set('auth', res.auth);
- this.$db.set('user', res.userinfo);
- this.$db.set('token', res.auth.token);
- this.$store.commit('setAccessToken', res.auth.token);
- this.$store.commit('setActivityId', 2);
- } catch (e) {
- console.log('e: ', e);
- }
- // uni.switchTab({
- // url: '/pages/index/index'
- // });
- if (this.redirect != '') {
- console.log(this.redirect);
- if (this.redirect.indexOf('%2F') > 0) {
- this.redirect = '/' + unescape(this.redirect);
- }
- this.$common.navigateTo(this.redirect);
- return;
- }
- uni.navigateBack();
- } else {
- _this.wxLogin();
- }
- }
- );
- },
- fail: (res) => {
- console.log('res: ', res);
- _this.wxLogin(); //重新获取登录code
- uni.hideLoading();
- if (res.errMsg == 'getUserInfo:cancel' || res.errMsg == 'getUserInfo:fail auth deny') {
- uni.showModal({
- title: '用户授权失败',
- showCancel: false,
- content: '请点击重新授权,如果未弹出授权,请尝试长按删除小程序,重新进入!',
- success: function (res) {
- if (res.confirm) {
- console.log('用户点击确定');
- uni.navigateBack();
- }
- }
- });
- }
- }
- });
- // uni.login({
- // success: loginRes => {
- // uni.hideLoading();
- // console.log('第一次登录'+loginRes.code)
- // if (loginRes.code && loginRes.code!='') {
- // console.log('2222222222222222222')
- // }
- // }
- // })
- }
- }
- };
- </script>
- <style>
- page {
- background: #fff;
- }
- .content {
- height: 100%;
- }
- .logView {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- /* 垂直居中 */
- width: 100%;
- position: fixed;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- }
- .logbt {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- /* 垂直居中 */
- width: 100%;
- background: none;
- border: none !important;
- }
- .logbt:after {
- border: none !important;
- }
- .logbt .logoimg {
- width: 200rpx;
- height: 200rpx;
- display: block;
- }
- .logbt .wechatimg {
- width: 150rpx;
- height: 150rpx;
- display: block;
- }
- .loginTitile {
- padding: 50rpx;
- font-size: 28rpx;
- color: #787878;
- line-height: 1.3;
- text-align: center;
- }
- .loginBtn {
- width: 300rpx;
- height: 70rpx;
- line-height: 70rpx;
- color: #fff;
- background: #2562a1;
- border-radius: 10rpx;
- border: none;
- }
- image {
- width: 100rpx;
- height: 100rpx;
- }
- .mobileLogin {
- background: none;
- color: #999;
- text-align: center;
- margin: 40rpx auto;
- border: none;
- font-size: 26rpx;
- }
- .landing[type='primary'] {
- height: 84rpx;
- line-height: 84rpx;
- border-radius: 44rpx;
- font-size: 32rpx;
- /* background: linear-gradient(left, #86B5F4, #4790EF); */
- background-color: #ffbc32;
- }
- .login-btn {
- padding: 10rpx 20rpx;
- margin-top: 60rpx;
- }
- .login-function {
- overflow: auto;
- padding: 20rpx 20rpx 30rpx 20rpx;
- }
- .login-forget {
- float: left;
- font-size: 26rpx;
- color: #999;
- }
- .login-register {
- color: #666;
- float: right;
- font-size: 26rpx;
- }
- .login-input input {
- background: #f2f5f6;
- font-size: 28rpx;
- padding: 10rpx 25rpx;
- height: 80rpx;
- line-height: 80rpx;
- border-radius: 40rpx;
- }
- .login-margin-b {
- margin-bottom: 25rpx;
- }
- .login-input {
- padding: 10rpx 20rpx;
- }
- .login-head {
- font-size: 34rpx;
- text-align: center;
- padding: 25rpx 10rpx 55rpx 10rpx;
- }
- .login-head image {
- width: 200rpx;
- }
- .login-card {
- background: #fff;
- border-radius: 12rpx;
- padding: 10rpx 25rpx;
- position: relative;
- margin-top: 120rpx;
- }
- .login-bg {
- height: 100%;
- padding: 25rpx;
- }
- </style>
|