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.

597 lines
14 KiB

<template>
<div class="login-container">
<div class="login-logo">
<img src="../../assets/login_logo.png" alt="">
</div>
<div class="login-wrap">
<div class="login-logo1">
<img src="../../assets/login_logo2.png" alt="">
</div>
<div class="login-form1">
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="" auto-complete="on"
label-position="left">
<div class="title-container">
<h3 class="title">欢迎登录</h3>
<div class="title-change">
<span @click="changeLogin = false" :class="{color:!changeLogin}">账号登录</span>
<span @click="changeLogin = true" :class="{color:changeLogin}">短信登录</span>
</div>
</div>
<template v-if="!changeLogin">
<el-form-item prop="username">
<el-input ref="username" v-model="loginForm.username" placeholder="用户名" name="username" type="text"
tabindex="1" auto-complete="on" />
</el-form-item>
<el-form-item prop="password">
<el-input :key="passwordType" ref="password" v-model="loginForm.password" :type="passwordType"
placeholder="密码" name="password" tabindex="2" auto-complete="on" @keyup.enter.native="handleLogin" />
<span class="show-pwd" @click="showPwd">
<svg-icon :icon-class="passwordType === 'password' ? 'eye' : 'eye-open'" />
</span>
</el-form-item>
</template>
<template v-else>
<el-form-item prop="mobile">
<el-input ref="mobile" v-model="loginForm.mobile" placeholder="手机号" name="mobile" type="text" tabindex="1"
auto-complete="on" />
</el-form-item>
<el-form-item prop="code" class="send_item">
<el-input ref="code" v-model="loginForm.code" placeholder="验证码" name="code" type="text" tabindex="1"
auto-complete="on">
</el-input>
<span :class="hasSend?'hasCode':'senndCode'" @click="sendMsg">{{hasSend?'已发送':'发送验证码'}}
<span v-if="hasSend">({{count}}s)</span>
</span>
</el-form-item>
</template>
<el-button v-if="!changeLogin" :loading="loading" type="primary" class="loginBtn"
@click.native.prevent="handleLogin">登录</el-button>
<el-button v-else :loading="loading" type="primary" class="loginBtn"
@click.native.prevent="handleMsgLogin">登录</el-button>
</el-form>
</div>
</div>
<div class="login-footer">版权所有:苏州未来科技产业发展有限公司</div>
</div>
</template>
<script>
import {
validUsername
} from '@/utils/validate'
import {
getMsg,
loginMsg
} from "@/api/user.js"
import {
setToken,
getToken
} from '@/utils/auth'
const defaultSettings = require('../../../src/settings.js')
export default {
name: 'Login',
data() {
const validateUsername = (rule, value, callback) => {
if (!validUsername(value)) {
callback(new Error('请正确输入登录名'))
} else {
callback()
}
}
const validatePassword = (rule, value, callback) => {
if (value.length < 6) {
callback(new Error('密码输入错误'))
} else {
callback()
}
}
return {
title: "",
changeLogin: false,
hasSend: false,
count: 60,
sendTimer: null,
loginForm: {
username: '',
password: ''
},
loginRules: {
username: [{
required: true,
trigger: 'blur',
validator: validateUsername
}],
password: [{
required: true,
trigger: 'blur',
validator: validatePassword
}]
},
loading: false,
passwordType: 'password',
redirect: undefined
}
},
watch: {
$route: {
handler: function(route) {
if (route.query && route.query.redirect === '/') {
this.redirect = '/dashboard'
} else {
this.redirect = route.query && route.query.redirect
}
},
immediate: true
}
},
created() {
this.title = defaultSettings.title;
},
methods: {
// changeLogin(type){
// if(){}
// },
showPwd() {
if (this.passwordType === 'password') {
this.passwordType = ''
} else {
this.passwordType = 'password'
}
this.$nextTick(() => {
this.$refs.password.focus()
})
},
changeLoginType(){
this.changeLogin = !this.changeLogin
},
// 发短信
sendMsg() {
if(this.hasSend){
return
}
if (this.base.isNull(this.loginForm.mobile)) {
// this.$Message.warning('请输入手机号')
this.base.showMessage("请输入手机号",'error')
return
}
if (!this.base.isPhone(this.loginForm.mobile)) {
// this.$Message.warning('请输入正确的手机号')
this.base.showMessage("请输入正确的手机号",'error')
return
}
getMsg({
mobile: this.loginForm.mobile
}).then(res => {
this.base.showMessage("发送成功",'success')
// this.$Message.success('发送成功')
// 短信发送后 60s
this.hasSend = true
this.sendTimer = setInterval(() => {
if (this.count > 1) {
this.count--;
} else {
clearInterval(this.sendTimer);
this.hasSend = false;
}
}, 1000);
})
},
// 短信登录
handleMsgLogin(){
if (this.base.isNull(this.loginForm.mobile)) {
// this.$Message.warning('请输入手机号')
this.base.showMessage("请输入手机号",'error')
return
}
if (this.base.isNull(this.loginForm.code)) {
// this.$Message.warning('请输入验证码')
this.base.showMessage("请输入验证码",'error')
return
}
this.loading = true
let that = this
this.$store.dispatch('user/loginMsg', this.loginForm).then(() => {
// this.$Message.success("登录成功")
this.base.showMessage("登录成功",'success')
this.$router.push({
path: this.redirect || '/dashboard'
})
this.loading = false
}).catch(() => {
this.loading = false
})
},
//处理账号登录
handleLogin() {
this.$refs.loginForm.validate(valid => {
if (valid) {
this.loading = true
this.$store.dispatch('user/login', this.loginForm).then(() => {
// this.$Message.success("登录成功")
this.base.showMessage("登录成功",'success')
this.$router.push({
path: this.redirect || '/dashboard'
})
this.loading = false
}).catch(() => {
this.loading = false
})
} else {
console.log('error submit!!')
return false
}
})
},
// 处理短信登录
}
}
</script>
<style lang="scss">
#particles-js {
width: 100%;
height: 99%;
position: absolute;
}
/* input */
/* Detail see https://github.com/PanJiaChen/vue-element-admin/pull/927 */
$bg: #122583;
$light_gray: #122583;
$cursor: #122583;
@supports (-webkit-mask: none) and (not (cater-color: $cursor)) {
.login-container .el-input input {
// color: $cursor;
}
}
/* reset element-ui css */
.login-container {
.el-input {
display: inline-block;
height: 47px;
width: 85%;
input {
background: transparent;
border: 0px;
-webkit-appearance: none;
border-radius: 0px;
padding: 12px 5px 12px 15px;
color: $light_gray;
height: 47px;
caret-color: $cursor;
&:-webkit-autofill {
//box-shadow: 0 0 0px 1000px $bg inset !important;
//-webkit-text-fill-color: $cursor !important;
}
}
}
.el-form-item {
border: 1px solid #cdcdcd;
background: #f4f4f4;
border-radius: 5px;
color: #454545;
margin-bottom: 30px;
}
}
</style>
<style lang="scss" scoped>
$bg: #122583;
$dark_gray: #122583;
$light_gray: #122583;
.login-container {
height: 100vh;
width: 100vw;
background: url("../../assets/login_bg.png") no-repeat;
overflow: hidden;
background-size: 100% 100%;
position: relative;
.login-footer {
text-align: center;
position: absolute;
bottom: 20px;
left: 0;
width: 100%;
color: #274999;
}
.login-logo {
// width: 20vw;
width: 383px;
margin: 0 auto;
margin-top: 9vh;
img {
width: 100%;
}
}
.login-wrap {
margin-top: 11vh;
margin-left: 20vw;
margin-right: 15vw;
display: flex;
justify-content: space-between;
align-items: end;
.login-logo1 {
// width: 16.5vw;
width: 270px;
img {
width: 100%;
}
}
.login-form1 {
width: 30vw;
// height: 49vh;
// width: 593px;
// height: 530px;
background: url('../../assets/login_form_bg.png') no-repeat;
background-size: 100% 100%;
padding: 45px;
padding-bottom: 90px;
padding-top: 35px;
// margin: 0 auto;
.title-container {
margin-bottom: 35px;
.title {
text-align: center;
font-size: 28px;
color: #274999;
text-align: center;
}
.title-change {
font-size: 18px;
display: flex;
justify-content: space-between;
padding-bottom: 10px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
span {
cursor: pointer;
}
span.color {
color: #c69c6d;
}
}
}
.send_item {
.el-input {
width: 70%;
}
.senndCode {
background-color: #c69c6d;
display: inline-block;
width: 30%;
text-align: center;
color: #fff;
height: 47px;
line-height: 47px;
border-radius: 0 5px 5px 0;
cursor: pointer;
}
.hasCode{
background-color: #ddd;
display: inline-block;
width: 30%;
text-align: center;
color: #000;
height: 47px;
line-height: 47px;
border-radius: 0 5px 5px 0;
cursor: pointer;
}
}
.loginBtn {
width: 100%;
background: linear-gradient(to right, #284a99, #c69c6d);
border: none;
height: 47px;
line-height: 47px;
padding: 0;
cursor: pointer;
font-size: 18px;
}
}
}
.tips {
font-size: 14px;
color: #fff;
margin-bottom: 10px;
span {
&:first-of-type {
margin-right: 16px;
}
}
}
.show-pwd {
position: absolute;
right: 10px;
top: 7px;
font-size: 16px;
color: $dark_gray;
cursor: pointer;
user-select: none;
}
}
@media (max-width:492px) {
.login-container {
.login-logo {
width: 100%;
}
.login-wrap {
margin-left: 0px;
margin-right: 0px;
.login-logo1 {
display: none;
}
.login-form1 {
width: 100%;
margin: 0 auto // height: 530px;
}
}
}
}
@media (min-width:493px) {
.login-container {
.login-wrap {
margin-left: 0px;
margin-right: 0px;
.login-logo1 {
display: none;
}
.login-form1 {
width: 493px;
margin: 0 auto // height: 530px;
}
}
}
}
@media (min-width:768px) {
.login-container {
.login-wrap {
margin-left: 100px;
margin-right: 50px;
.login-logo1 {
display: none;
}
.login-form1 {
width: 493px;
margin: 0 auto // height: 530px;
}
}
}
}
@media (min-width:992px) {
.login-container {
.login-wrap {
margin-left: 100px;
margin-right: 50px;
.login-logo1 {
display: block;
width: 217
}
.login-form1 {
width: 493px;
margin: 0;
// height: 530px;
}
}
}
}
@media (min-width:1220px) {
.login-container {
.login-wrap {
margin-left: 150px;
margin-right: 100px;
.login-logo1 {
display: block;
}
.login-form1 {
margin: 0
}
}
}
}
@media (min-width:1320px) {
.login-container {
.login-wrap {
margin-left: 15vw;
margin-right: 10vw;
.login-logo1 {
display: block;
}
.login-form1 {
margin: 0
}
}
}
}
@media (min-width:1440px) {
.login-container {
.login-wrap {
margin-left: 20vw;
margin-right: 10vw;
.login-logo1 {
display: block;
}
.login-form1 {
margin: 0
}
}
}
}
// @media (min-width:992px) {
// .login-container {
// .login-wrap {
// margin-left: 200px;
// margin-right: 150px;
// .login-logo1 {
// display: block;
// }
// // .login-form1 {
// // width: 593px;
// // // height: 530px;
// // }
// }
// }
// }
</style>