2017-06-26 13:38:24 +08:00
|
|
|
<template>
|
2017-06-28 23:02:22 +08:00
|
|
|
<div class="login-container">
|
|
|
|
<el-form autoComplete="on" :model="loginForm" :rules="loginRules" ref="loginForm" label-position="left" label-width="0px"
|
|
|
|
class="card-box login-form">
|
2017-10-18 15:05:30 +08:00
|
|
|
<h3 class="title">vue-element-admin</h3>
|
|
|
|
<el-form-item prop="username">
|
2017-08-30 18:13:44 +08:00
|
|
|
<span class="svg-container svg-container_login">
|
2017-11-24 14:29:43 +08:00
|
|
|
<svg-icon icon-class="user" />
|
2017-08-30 17:42:06 +08:00
|
|
|
</span>
|
2017-10-18 15:05:30 +08:00
|
|
|
<el-input name="username" type="text" v-model="loginForm.username" autoComplete="on" placeholder="username" />
|
2017-06-28 23:02:22 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item prop="password">
|
|
|
|
<span class="svg-container">
|
2017-11-24 14:29:43 +08:00
|
|
|
<svg-icon icon-class="password"></svg-icon>
|
2017-08-30 17:42:06 +08:00
|
|
|
</span>
|
2017-11-24 14:46:19 +08:00
|
|
|
<el-input name="password" :type="pwdType" @keyup.enter.native="handleLogin" v-model="loginForm.password" autoComplete="on"
|
2017-10-18 15:05:30 +08:00
|
|
|
placeholder="password"></el-input>
|
2017-11-24 14:46:19 +08:00
|
|
|
<span class="show-pwd" @click="showPwd"><svg-icon icon-class="eye" /></span>
|
2017-06-28 23:02:22 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="primary" style="width:100%;" :loading="loading" @click.native.prevent="handleLogin">
|
2017-10-18 15:05:30 +08:00
|
|
|
Sign in
|
2017-06-28 23:02:22 +08:00
|
|
|
</el-button>
|
|
|
|
</el-form-item>
|
2017-11-24 17:21:32 +08:00
|
|
|
<div class="tips">
|
2017-10-18 15:05:30 +08:00
|
|
|
<span style="margin-right:20px;">username: admin</span>
|
|
|
|
</span> password: admin</span>
|
|
|
|
</div>
|
2017-06-28 23:02:22 +08:00
|
|
|
</el-form>
|
|
|
|
</div>
|
2017-06-26 13:38:24 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2017-08-30 18:13:44 +08:00
|
|
|
import { isvalidUsername } from '@/utils/validate'
|
2017-06-26 13:38:24 +08:00
|
|
|
|
2017-08-30 17:42:06 +08:00
|
|
|
export default {
|
|
|
|
name: 'login',
|
|
|
|
data() {
|
2017-08-30 18:13:44 +08:00
|
|
|
const validateUsername = (rule, value, callback) => {
|
|
|
|
if (!isvalidUsername(value)) {
|
|
|
|
callback(new Error('请输入正确的用户名'))
|
2017-08-30 17:42:06 +08:00
|
|
|
} else {
|
|
|
|
callback()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const validatePass = (rule, value, callback) => {
|
2017-10-18 15:05:30 +08:00
|
|
|
if (value.length < 5) {
|
|
|
|
callback(new Error('密码不能小于5位'))
|
2017-08-30 17:42:06 +08:00
|
|
|
} else {
|
|
|
|
callback()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
loginForm: {
|
2017-08-30 18:13:44 +08:00
|
|
|
username: 'admin',
|
2017-10-18 15:05:30 +08:00
|
|
|
password: 'admin'
|
2017-08-30 17:42:06 +08:00
|
|
|
},
|
|
|
|
loginRules: {
|
2017-08-30 18:13:44 +08:00
|
|
|
username: [{ required: true, trigger: 'blur', validator: validateUsername }],
|
|
|
|
password: [{ required: true, trigger: 'blur', validator: validatePass }]
|
2017-06-26 13:38:24 +08:00
|
|
|
},
|
2017-11-24 14:46:19 +08:00
|
|
|
loading: false,
|
|
|
|
pwdType: 'password'
|
2017-08-30 17:42:06 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2017-11-24 14:46:19 +08:00
|
|
|
showPwd() {
|
|
|
|
if (this.pwdType === 'password') {
|
|
|
|
this.pwdType = ''
|
|
|
|
} else {
|
|
|
|
this.pwdType = 'password'
|
|
|
|
}
|
|
|
|
},
|
2017-08-30 17:42:06 +08:00
|
|
|
handleLogin() {
|
|
|
|
this.$refs.loginForm.validate(valid => {
|
|
|
|
if (valid) {
|
|
|
|
this.loading = true
|
|
|
|
this.$store.dispatch('Login', this.loginForm).then(() => {
|
|
|
|
this.loading = false
|
|
|
|
this.$router.push({ path: '/' })
|
|
|
|
}).catch(() => {
|
|
|
|
this.loading = false
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
console.log('error submit!!')
|
|
|
|
return false
|
2017-06-26 13:38:24 +08:00
|
|
|
}
|
2017-08-30 17:42:06 +08:00
|
|
|
})
|
2017-06-26 13:38:24 +08:00
|
|
|
}
|
2017-08-30 17:42:06 +08:00
|
|
|
}
|
|
|
|
}
|
2017-06-26 13:38:24 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style rel="stylesheet/scss" lang="scss">
|
2017-08-30 18:13:44 +08:00
|
|
|
@import "src/styles/mixin.scss";
|
|
|
|
$bg:#2d3a4b;
|
|
|
|
$dark_gray:#889aa4;
|
|
|
|
$light_gray:#eee;
|
|
|
|
|
|
|
|
.login-container {
|
|
|
|
@include relative;
|
|
|
|
height: 100vh;
|
|
|
|
background-color: $bg;
|
|
|
|
input:-webkit-autofill {
|
|
|
|
-webkit-box-shadow: 0 0 0px 1000px #293444 inset !important;
|
|
|
|
-webkit-text-fill-color: #fff !important;
|
|
|
|
}
|
|
|
|
input {
|
|
|
|
background: transparent;
|
|
|
|
border: 0px;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
border-radius: 0px;
|
|
|
|
padding: 12px 5px 12px 15px;
|
|
|
|
color: $light_gray;
|
|
|
|
height: 47px;
|
|
|
|
}
|
|
|
|
.el-input {
|
|
|
|
display: inline-block;
|
|
|
|
height: 47px;
|
|
|
|
width: 85%;
|
|
|
|
}
|
2017-06-28 23:02:22 +08:00
|
|
|
.tips {
|
2017-06-26 13:38:24 +08:00
|
|
|
font-size: 14px;
|
|
|
|
color: #fff;
|
2017-08-30 18:13:44 +08:00
|
|
|
margin-bottom: 10px;
|
2017-06-26 13:38:24 +08:00
|
|
|
}
|
2017-08-30 18:13:44 +08:00
|
|
|
.svg-container {
|
|
|
|
padding: 6px 5px 6px 15px;
|
|
|
|
color: $dark_gray;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 30px;
|
|
|
|
display: inline-block;
|
|
|
|
&_login {
|
|
|
|
font-size: 20px;
|
2017-06-28 23:02:22 +08:00
|
|
|
}
|
2017-06-26 13:38:24 +08:00
|
|
|
}
|
2017-08-30 18:13:44 +08:00
|
|
|
.title {
|
|
|
|
font-size: 26px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: $light_gray;
|
|
|
|
margin: 0px auto 40px auto;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.login-form {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 400px;
|
|
|
|
padding: 35px 35px 15px 35px;
|
|
|
|
margin: 120px auto;
|
|
|
|
}
|
|
|
|
.el-form-item {
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
background: rgba(0, 0, 0, 0.1);
|
|
|
|
border-radius: 5px;
|
|
|
|
color: #454545;
|
|
|
|
}
|
|
|
|
.show-pwd {
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
top: 7px;
|
|
|
|
font-size: 16px;
|
|
|
|
color: $dark_gray;
|
|
|
|
cursor: pointer;
|
2017-11-24 14:46:19 +08:00
|
|
|
user-select:none;
|
2017-08-30 18:13:44 +08:00
|
|
|
}
|
|
|
|
.thirdparty-button{
|
|
|
|
position: absolute;
|
|
|
|
right: 35px;
|
|
|
|
bottom: 28px;
|
|
|
|
}
|
|
|
|
}
|
2017-06-26 13:38:24 +08:00
|
|
|
</style>
|