金五联管理系统PC前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jwl-manage-web/src/views/login.vue

173 lines
4.3 KiB

2 years ago
<template>
<div class="login">
2 years ago
<div class="login-form">
1 year ago
<h3 class="title">寻驾招生管理系统</h3>
2 years ago
<el-tabs v-model="activeName" type="card">
<el-tab-pane label="微信扫码" name="wx" style="height:200px">
<wxlogin v-if="!code && activeName === 'wx'" appid="wx203f734baa9c9845" :scope="'snsapi_login'" :theme="'black'" redirect_uri="https://xueche.ahduima.com/login" :href="href">
</wxlogin>
<!-- <div id="wxcode" v-if="!code && activeName === 'wx'"></div> -->
<!-- 绑定手机号框 -->
<div v-else v-loading="loading">
<WxCode v-if="codeShow" :code="code" :openId="openId" />
</div>
</el-tab-pane>
<el-tab-pane label="账号密码" name="password" style="height:200px">
<Password v-if="activeName === 'password'" />
</el-tab-pane>
</el-tabs>
</div>
2 years ago
<!-- 底部 -->
<div class="el-login-footer">
<span>Copyright © 2018-2022 ruoyi.vip All Rights Reserved.</span>
</div>
</div>
</template>
<script>
import { getCodeImg } from '@/api/login';
import Cookies from 'js-cookie';
import { encrypt, decrypt } from '@/utils/jsencrypt';
2 years ago
import wxlogin from 'vue-wxlogin'
import Password from './password.vue';
import WxCode from './wxCode.vue';
2 years ago
export default {
name: 'Login',
2 years ago
components: {
wxlogin, Password, WxCode
},
2 years ago
data() {
return {
codeUrl: '',
loading: false,
2 years ago
redirect: undefined,
activeName: 'wx',
code: undefined,
openId: undefined,
codeShow: false,
href: "data:text/css;base64,LmltcG93ZXJCb3ggLnFyY29kZSB7d2lkdGg6IDE4MHB4OyBtYXJnaW4tdG9wOjBweH0KLmltcG93ZXJCb3ggLnRpdGxlIHtkaXNwbGF5OiBub25lO30KLmltcG93ZXJCb3ggLmluZm8ge3dpZHRoOiAxODBweDt9Ci5zdGF0dXNfaWNvbiB7ZGlzcGxheTogbm9uZX0KLmltcG93ZXJCb3ggLnN0YXR1cyB7dGV4dC1hbGlnbjogY2VudGVyO30g"
2 years ago
};
},
watch: {
$route: {
handler: function (route) {
this.redirect = route.query && route.query.redirect;
},
immediate: true
}
},
created() {
2 years ago
this.code = this.$route.query.code;
if (this.code) {
this.loading = true
this.wxLogin(this.code);
}
},
mounted() {
// this.createWxQrcode();
2 years ago
},
methods: {
2 years ago
async wxLogin(code) {
//根据code和openId查询是否关联了手机号,如果没有关联 需先关联手机号
2 years ago
this.$store.dispatch('WXLogin', { code: code, type: 1 }).then(resp => {
if (resp && resp.token != undefined) {
this.$router.push({ path: this.redirect || '/' }).catch(() => { });
} else if (resp.openId) {
//如果返回openId则是没有绑定手机号
this.openId = resp.openId;
this.loading = false
this.codeShow = true
} else {
this.$message.error("二维码失效,请刷新!");
}
});
2 years ago
},
2 years ago
createWxQrcode() {
// 生成微信登录二维码
var obj = new WxLogin({
self_redirect: true,
id: "wxcode", // 页面显示二维码的容器id
appid: "wx203f734baa9c9845", // 微信官方提供的测试id
scope: "snsapi_login",
redirect_uri: "https://xueche.ahduima.com/login", // 微信官方中的测试地址
state: "bind",
style: "black",
href: this.href,
2 years ago
});
}
}
};
</script>
<style rel="stylesheet/scss" lang="scss">
.login {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
background-image: url('../assets/images/login-background.jpg');
background-size: cover;
}
.title {
margin: 0px auto 30px auto;
text-align: center;
color: #707070;
}
.login-form {
2 years ago
display: inline;
2 years ago
border-radius: 6px;
background: #ffffff;
2 years ago
width: 350px;
2 years ago
padding: 25px 25px 5px 25px;
.el-input {
height: 38px;
input {
height: 38px;
}
}
.input-icon {
height: 39px;
width: 14px;
margin-left: 2px;
}
}
.login-tip {
font-size: 13px;
text-align: center;
color: #bfbfbf;
}
.login-code {
width: 33%;
height: 38px;
float: right;
img {
cursor: pointer;
vertical-align: middle;
}
}
.el-login-footer {
height: 40px;
line-height: 40px;
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
color: #fff;
font-family: Arial;
font-size: 12px;
letter-spacing: 1px;
}
.login-code-img {
height: 38px;
}
2 years ago
.impowerBox .qrcode {
width: 200px !important;
}
2 years ago
</style>