123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- <template>
- <view v-if="isUp">
- <view class="mobile-bg" @click="close"></view>
- <view class="mobile-mask animated" :class="{slideInUp:isUp}">
- <view class="input-item">
- <input type="text" v-model="account" :placeholder="$t(`请输入登录账号`)" maxlength="11" />
- </view>
- <view class="input-item">
- <input type="password" v-model="password" :placeholder="$t(`请输入登录密码`)" maxlength="30" />
- </view>
- <!-- <view class="input-item">
- <input type="text" v-model="codeNum" :placeholder="$t(`输入验证码`)" maxlength="6" />
- <button class="code" :disabled="disabled" @click="code">{{text}}</button>
- </view> -->
- <view class="sub_btn" @click="loginBtn">{{$t(`立即登录`)}}</view>
- </view>
- </view>
- </template>
- <script>
- const app = getApp();
- import sendVerifyCode from "@/mixins/SendVerifyCode";
- import Routine from '@/libs/routine';
- import {
- loginMobile,
- registerVerify,
- getCodeApi,
- getUserInfo,
- phoneSilenceAuth,
- phoneWxSilenceAuth,
- getLoginAccount
- } from "@/api/user";
- import {
- bindingPhone
- } from '@/api/api.js'
- export default {
- name: 'login_mobile',
- props: {
- isUp: {
- type: Boolean,
- default: false,
- },
- authKey: {
- type: String,
- default: '',
- },
- wxcode: {
- type: String,
- default: '',
- }
- },
- data() {
- return {
- password: '',
- keyCode: '',
- account: '',
- codeNum: ''
- }
- },
- mixins: [],
- mounted() {
- // this.getCode();
- },
- methods: {
- // 获取验证码
- async code() {
- let that = this;
- if (!that.account) return that.$util.Tips({
- title: that.$t(`请填写登录账号`)
- });
- // if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.account)) return that.$util.Tips({
- // title: that.$t(`请输入正确的手机号码`)
- // });
- await registerVerify({
- phone: that.account,
- key: that.keyCode,
- }).then(res => {
- that.$util.Tips({
- title: res.msg
- });
- that.sendCode();
- }).catch(err => {
- return that.$util.Tips({
- title: err
- })
- })
- },
- // 获取验证码api
- getCode() {
- let that = this
- getCodeApi().then(res => {
- that.keyCode = res.data.key;
- }).catch(res => {
- that.$util.Tips({
- title: res
- });
- });
- },
- close() {
- this.$emit('close', false)
- },
- // 登录
- loginBtn() {
- let that = this
- // #ifdef MP
- if (!that.account) return that.$util.Tips({
- title: that.$t(`请填写登录账号`)
- });
- // if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.account)) return that.$util.Tips({
- // title: that.$t(`请输入正确的手机号码`)
- // });
- if (!that.password) return that.$util.Tips({
- title: that.$t(`请填写登录密码`)
- });
- // if (!that.codeNum) return that.$util.Tips({
- // title: that.$t(`请填写验证码`)
- // });
- // if (!/^[\w\d]+$/i.test(that.codeNum)) return that.$util.Tips({
- // title: that.$t(`请输入正确的验证码`)
- // });
- uni.showLoading({
- title: that.$t(`正在登录中`)
- });
- getLoginAccount({
- username: that.account,
- password: that.password,
- wxcode: that.wxcode
- }).then(res => {
- this.$store.commit('LOGIN', {
- token: res.data.access_token,
- time: res.data.expires_in
- });
- this.$store.commit('OPENID',res.data.openId);
- this.getUserInfo();
- })
- // Routine.getCode()
- // .then(code => {
- // this.phoneSilenceAuth(code);
- // })
- // .catch(error => {
- // uni.hideLoading();
- // });
- // #endif
- // #ifdef H5
- if (!that.account) return that.$util.Tips({
- title: that.$t(`请填写登录账号`)
- });
- // if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.account)) return that.$util.Tips({
- // title: that.$t(`请输入正确的手机号码`)
- // });
- if (!that.codeNum) return that.$util.Tips({
- title: that.$t(`请填写验证码`)
- });
- if (!/^[\w\d]+$/i.test(that.codeNum)) return that.$util.Tips({
- title: that.$t(`请输入正确的验证码`)
- });
- uni.showLoading({
- title: that.$t(`正在登录中`)
- });
- if (this.authKey) {
- phoneWxSilenceAuth({
- spid: app.globalData.spid,
- spread: app.globalData.code,
- phone: this.account,
- captcha: this.codeNum,
- key: this.authKey
- }).then(res => {
- let time = res.data.expires_time - this.$Cache.time();
- this.$store.commit('LOGIN', {
- token: res.data.token,
- time: time
- });
- this.getUserInfo();
- }).catch(error => {
- uni.hideLoading()
- this.$util.Tips({
- title: error
- })
- })
- } else {
- loginMobile({
- phone: this.account,
- captcha: this.codeNum,
- spread: app.globalData.spid,
- }).then(res => {
- let time = res.data.expires_time - this.$Cache.time();
- this.$store.commit('LOGIN', {
- token: res.data.token,
- time: time
- });
- this.$Cache.clear('snsapiKey');
- this.getUserInfo();
- }).catch(error => {
- uni.hideLoading()
- this.$util.Tips({
- title: error
- })
- })
- }
- // #endif
- },
- // #ifdef MP
- phoneSilenceAuth(code) {
- let self = this
- phoneSilenceAuth({
- code: code,
- spread_spid: app.globalData.spid,
- spread_code: app.globalData.code,
- phone: this.account,
- captcha: this.codeNum
- }).then(res => {
- let time = res.data.expires_time - this.$Cache.time();
- this.$store.commit('LOGIN', {
- token: res.data.token,
- time: time
- });
- this.$store.commit('SETUID', {
- token: res.data.user_id
- });
- this.getUserInfo();
- }).catch(error => {
- self.$util.Tips({
- title: error
- })
- })
- },
- // #endif
- /**
- * 获取个人用户信息
- */
- getUserInfo: function() {
- let that = this;
- getUserInfo().then(res => {
- uni.hideLoading();
- that.userInfo = res.data
- that.$store.commit("SETUID", res.data.userId);
- that.$store.commit("UPDATE_USERINFO", res.data);
- // #ifdef MP
- that.$util.Tips({
- title: that.$t(`登录成功`),
- icon: 'success'
- }, {
- tab: 3
- })
- that.close()
- // #endif
- // #ifdef H5
- that.$emit('wechatPhone', true)
- // #endif
- });
- },
- }
- }
- </script>
- <style lang="stylus">
- .mobile-bg {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.5);
- }
- .mobile-mask {
- z-index: 20;
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- padding: 67rpx 30rpx;
- background: #fff;
- .input-item {
- display: flex;
- justify-content: space-between;
- width: 100%;
- height: 86rpx;
- margin-bottom: 38rpx;
- input {
- flex: 1;
- display: block;
- height: 100%;
- padding-left: 40rpx;
- border-radius: 43rpx;
- border: 1px solid #DCDCDC;
- }
- .code {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 220rpx;
- height: 86rpx;
- margin-left: 30rpx;
- background: var(--view-minorColorT);
- font-size: 28rpx;
- color: var(--view-theme);
- border-radius: 43rpx;
- &[disabled] {
- background: rgba(0, 0, 0, 0.05);
- color: #999;
- }
- }
- }
- .sub_btn {
- width: 690rpx;
- height: 86rpx;
- line-height: 86rpx;
- margin-top: 60rpx;
- background: var(--view-theme);
- border-radius: 43rpx;
- color: #fff;
- font-size: 28rpx;
- text-align: center;
- }
- }
- .animated {
- animation-duration: .4s
- }
- </style>
|