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.

374 lines
12 KiB

4 years ago
<template>
<div class="wrap">
<div class="bg">
<div class="left">
4 years ago
<div class="text">
4 years ago
<p>欢迎使用</p>
<p>Occupation Lab</p>
</div>
</div>
<div class="right"></div>
</div>
<div class="right-form">
<div class="form">
4 years ago
<el-tabs v-model="activeName" @tab-click="handleClick">
<el-tab-pane label="账号登录" name="1"></el-tab-pane>
<el-tab-pane label="手机号/邮箱登录" name="2"></el-tab-pane>
<el-form :model="loginForm" :rules="loginRules" ref="loginForm" style="margin-top: 20px">
<el-form-item v-if="activeName === '1'" label="用户名" prop="account">
<el-input v-model.trim="loginForm.account" placeholder="请输入账号"></el-input>
</el-form-item>
<el-form-item v-if="activeName === '2'" label="手机号/邮箱" prop="account">
<el-input v-model.trim="loginForm.account" placeholder="请输入手机号/邮箱"></el-input>
</el-form-item>
<el-form-item label="密码" prop="password">
<el-input
type="password"
placeholder="请输入密码"
v-model.trim="loginForm.password"
>
</el-input>
</el-form-item>
<el-form-item label="验证码" prop="code">
<el-input
placeholder="请输入验证码"
v-model.trim="loginForm.code"
@keyup.enter.native="submitFormLogin"
>
</el-input>
<img @click="getVerImg" :src="verificationIMG" class="verification" alt="">
</el-form-item>
<el-button class="submit" type="primary" @click="submitFormLogin">登录</el-button>
</el-form>
</el-tabs>
4 years ago
</div>
</div>
4 years ago
<el-dialog title="绑定手机号" :visible.sync="phoneVisible" :close-on-click-modal="false" width="30%">
3 years ago
<div style='padding: 0 13px 20px 13px;'>
依据国家政策法规需绑定手机号进行实网络实名才可登录使用本平台
</div>
4 years ago
<el-form ref="form" label-width="60px">
<el-form-item label="手机号">
<el-input style="width: 100%;" placeholder="请输入手机号" v-model="phone" maxlength="11"></el-input>
</el-form-item>
<el-form-item label="验证码">
<div style="display: flex;">
<el-input v-model="phoneCode" placeholder="请输入验证码" maxlength="6"></el-input>
<el-button style="margin-left: 10px" type="text" @click="sendPhoneCode"
:disabled="phoneDisabled">{{ phoneBtnText }}
</el-button>
</div>
</el-form-item>
</el-form>
4 years ago
<span slot="footer" class="dialog-footer">
4 years ago
<el-button size="small" @click="phoneVisible = false"> </el-button>
<el-button size="small" type="primary" @click="phoneSubmit"> </el-button>
4 years ago
</span>
</el-dialog>
4 years ago
<v-footer ref="footer"></v-footer>
4 years ago
</div>
</template>
<script>
4 years ago
import vFooter from "@/layouts/footer";
4 years ago
import { mapActions } from "vuex";
4 years ago
import util from "@/libs/util";
import Setting from "@/setting";
4 years ago
export default {
data: function() {
return {
4 years ago
verificationIMG: "",
activeName: "1",
4 years ago
loginForm: {
4 years ago
account: "",
password: "",
4 years ago
code: "", // 验证码
random: "", // 随机数
4 years ago
distinguish: 1, // 区分手机号账号登录,1为账号登录,2为手机号或邮箱登录
type: 1, // 平台端区分:0->教师端 1->学生端 2->无端
4 years ago
platform: Setting.platformId
4 years ago
},
loginRules: {
4 years ago
account: [{ required: true, message: "请输入账号", trigger: "blur" }],
4 years ago
password: [{ required: true, message: "请输入密码", trigger: "blur" }],
code: [{ required: true, message: "请输入验证码", trigger: "blur" }]
4 years ago
},
4 years ago
phoneVisible: false,
4 years ago
phone: "",
phoneCode: "",
4 years ago
phoneDisabled: false,
phoneTimer: null,
4 years ago
phoneBtnText: "发送验证码"
4 years ago
};
},
components: {
vFooter
},
4 years ago
created() {
this.getVerImg();
},
4 years ago
mounted() {
// 页面离开的时候销毁手机和邮箱验证码定时器
4 years ago
this.$once("hook:beforeDestroy", function() {
clearInterval(this.phoneTimer);
this.phoneTimer = null;
});
4 years ago
},
methods: {
4 years ago
...mapActions("user", [
4 years ago
"login"
4 years ago
]),
4 years ago
getVerImg() { // 获取验证码图片
this.loginForm.random = Math.floor(Math.random() * 999999999);
this.verificationIMG = this.api.verification + "?random=" + `${this.loginForm.random}`;
},
4 years ago
handleClick(tab, event) { // 切换标签
this.loginForm.account = "";
this.$refs.loginForm.clearValidate();
this.loginRules.account[0].message = tab.index === "1" ? "请输入账号" : "请输入手机号/邮箱";
4 years ago
},
4 years ago
submitFormLogin() { // 提交登录
this.$refs.loginForm.validate(valid => {
4 years ago
if (valid) {
4 years ago
this.loginForm.distinguish = Number(this.activeName);
this.login(this.loginForm).then(() => {
let redirect = this.$route.query.redirect ? decodeURIComponent(this.$route.query.redirect) : "/index";
4 years ago
this.$router.replace(redirect);
}).catch(res => {
4 years ago
if (res && res.status == 30001) {
this.phoneVisible = true;
}
this.getVerImg();
this.loginForm.code = "";
4 years ago
});
4 years ago
} else {
return util.errorMsg("请检查表单数据");
4 years ago
}
});
},
4 years ago
phoneCountdown() {
let count = 60;
if (!this.phoneTimer) {
this.phoneDisabled = true;
4 years ago
this.phoneTimer = setInterval(() => {
4 years ago
console.log("倒计时中");
4 years ago
if (count > 0) {
count--;
this.phoneBtnText = `${count}秒后重试`;
} else {
this.phoneDisabled = false;
clearInterval(this.phoneTimer);
this.phoneTimer = null;
this.phoneBtnText = `发送验证码`;
4 years ago
}
4 years ago
}, 1000);
4 years ago
}
},
4 years ago
sendPhoneCode() {
if (!this.phone) return util.warningMsg("请输入手机号");
if (!/^1[3456789]\d{9}$/.test(this.phone)) return util.warningMsg("请输入正确的手机号");
4 years ago
let data = {
4 years ago
platform: Setting.platformId,
4 years ago
phone: this.phone,
types: 2
4 years ago
};
4 years ago
this.$post(this.api.sendPhoneOrEmailCode, data).then(res => {
if (res.message.opener) {
4 years ago
this.phoneCountdown();
4 years ago
this.phoneOpener = res.message.opener;
} else {
util.errorMsg(res.message);
4 years ago
}
4 years ago
4 years ago
}).catch(res => {
});
4 years ago
},
4 years ago
phoneSubmit() {
if (!this.phone) return util.warningMsg("请输入手机号");
if (!/^1[3456789]\d{9}$/.test(this.phone)) return util.warningMsg("请输入正确的手机号");
if (!this.phoneCode) return util.warningMsg("请输入验证码");
let data = {
phone: this.phone,
types: 2,
code: this.phoneCode,
opener: this.phoneOpener,
platform: Setting.platformId,
account: this.loginForm.account
4 years ago
};
4 years ago
this.$post(this.api.bindPhoneOrEmail, data).then(res => {
util.successMsg("绑定成功");
this.loginForm.phone = this.phone;
this.phoneVisible = false;
3 years ago
util.local.set(Setting.tokenKey, res.token, Setting.tokenExpires);
3 years ago
let redirect = this.$route.query.redirect ? decodeURIComponent(this.$route.query.redirect) : "/index";
this.$router.replace(redirect);
util.successMsg("登录成功");
4 years ago
}).catch(res => {
4 years ago
});
4 years ago
}
4 years ago
}
4 years ago
};
</script>
<style scoped lang="scss">
4 years ago
.wrap {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
.bg {
display: flex;
justify-content: space-between;
align-items: center;
height: calc(100% - 56px);
4 years ago
.left {
position: relative;
width: 40%;
height: 100%;
background: url(../../../assets/img/bg_2.png) 0 0/100% 100% no-repeat;
.text {
position: absolute;
top: 35%;
left: 15%;
color: #fff;
font-size: 46px;
font-weight: bold;
p:first-child {
margin-bottom: 20px;
4 years ago
}
}
}
4 years ago
.right {
width: 50%;
height: 100%;
background: url(../../../assets/img/bg_1.png) center center/80% auto no-repeat;
}
}
/deep/ .right-form {
position: absolute;
top: 47%;
right: 12%;
transform: translateY(-50%);
width: 30%;
.logo {
width: 100%;
margin-bottom: 40px;
}
.form {
padding: 50px 20px 20px;
background-color: #fff;
border-radius: 16px;
box-sizing: border-box;
box-shadow: 0 1px 20px rgba(146, 120, 255, 0.3);
}
.back {
4 years ago
position: absolute;
4 years ago
top: 20px;
left: 20px;
font-size: 24px;
color: #9278ff;
cursor: pointer;
&:hover {
opacity: .8;
4 years ago
}
4 years ago
}
.el-tabs__nav-scroll {
display: flex;
justify-content: center;
}
h2 {
padding-bottom: 10px;
font-size: 20px;
font-weight: 400;
color: #8F73FF;
text-align: center;
border-bottom: 1px solid #f3f3f3;
}
.el-form {
width: 70%;
margin: 30px auto 0;
.label {
line-height: 1.8;
color: #929292;
4 years ago
}
4 years ago
/deep/ .el-input__inner {
height: 46px;
padding: 0 23px;
line-height: 46px;
border: 1px solid #E5E5E5;
border-radius: 8px !important;
4 years ago
}
4 years ago
/deep/ .el-form-item__error {
top: 105%;
left: auto;
right: 0;
color: #FFA94E;
4 years ago
}
4 years ago
.verification {
position: absolute;
right: 0px;
width: 100px;
height: 32px;
4 years ago
border: 1px solid #DCDFE6;
cursor: pointer;
4 years ago
}
4 years ago
.submit {
width: 100%;
height: 48px;
4 years ago
margin-top: 20px;
4 years ago
line-height: 48px;
padding: 0;
font-size: 18px;
background-color: #9278ff;
border-radius: 6px;
border: 0;
4 years ago
}
}
}
4 years ago
}
.switch {
span {
cursor: pointer;
color: #9076FF;
4 years ago
}
4 years ago
}
.links {
width: 70%;
margin: 20px auto 0;
text-align: right;
}
.ques {
color: #9278ff;
font-size: 14px;
}
.forget {
color: #ffa94e;
font-size: 14px;
}
4 years ago
</style>