使用Vue.js开发后台管理平台登录页面
登录页面
views/login/index.vue
页面基础标签
<template>
<h3>管理员登录</h3>
</template>
<script>
export default {
// 定义页面组件名称
name: "login",
};
</script>
<style scoped>
</style>
配置路由
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'login',
component: () => import('@/views/login/index')
}
]
})
添加简单表单
<template>
<el-form
ref="loginForm"
:model="loginForm"
class="login-form"
auto-complete="on"
label-position="left"
>
<h3 class="title">管理员登录</h3>
<el-form-item prop="username">
<span class="svg-container">
<svg-icon icon-class="user" />
</span>
<el-input
v-model="loginForm.username"
name="username"
type="text"
tabindex="1"
auto-complete="on"
placeholder="管理员账户"
/>
</el-form-item>
<el-form-item>
<span class="svg-container">
<svg-icon icon-class="password" />
</span>
<el-input
v-model="loginForm.password"
name="password"
type="text"
tabindex="1"
auto-complete="on"
placeholder="管理员密码"
/>
</el-form-item>
<el-button type="primary" style="width: 100%; margin-bottom: 30px"
>登录</el-button
>
</el-form>
</template>
<script>
export default {
// 定义页面组件名称
name: "login",
data() {
return {
loginForm: {
username: "admin123",
password: "admin123",
code: "",
},
};
},
};
</script>
<style scoped>
</style>
添加点击事件和表单校验
loginRules: {
username: [{ required: true, message: '管理员账户不允许为空', trigger: 'blur' }],
password: [
{ required: true, message: '管理员密码不允许为空', trigger: 'blur' },
{ validator: validatePassword, trigger: 'blur' }
]
},
<el-button :loading="loading" type="primary" style="width:100%;margin-bottom:30px;" @click.native.prevent="handleLogin">登录</el-button>
handleLogin() {
this.$refs.loginForm.validate(valid => {
if (valid && !this.loading) {
this.loading = true
this.$store.dispatch('LoginByUsername', this.loginForm).then(() => {
this.loading = false
this.$router.push({ path: this.redirect || '/' })
}).catch(response => {
if (response.data.data) {
this.codeImg = response.data.data
}
this.$notify.error({
title: '失败',
message: response.data.errmsg
})
this.loading = false
})
} else {
return false
}
})
}
修改样式,背景颜色。
<template>
<div class="login-container">
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form" auto-complete="on" label-position="left">
<div class="title-container">
<h3 class="title">管理员登录</h3>
</div>
<el-form-item prop="username">
<span class="svg-container">
<svg-icon icon-class="user" />
</span>
<el-input v-model="loginForm.username" name="username" type="text" tabindex="1" auto-complete="on" placeholder="管理员账户" />
</el-form-item>
<el-form-item prop="password">
<span class="svg-container">
<svg-icon icon-class="password" />
</span>
<el-input v-model="loginForm.password" :type="passwordType" name="password" auto-complete="on" tabindex="2" show-password placeholder="管理员密码" @keyup.enter.native="handleLogin" />
</el-form-item>
<!-- <el-form-item prop="code">
<span class="svg-container">
<svg-icon icon-class="lock" />
</span>
<el-input v-model="loginForm.code" auto-complete="off" name="code" tabindex="2" placeholder="验证码" style="width: 60%" @keyup.enter.native="handleLogin" />
<div class="login-code">
<img :src="codeImg" @click="getCode">
</div>
</el-form-item> -->
<el-button :loading="loading" type="primary" style="width:100%;margin-bottom:30px;" @click.native.prevent="handleLogin">登录</el-button>
<div style="position:relative">
<div class="tips">
<span> 超级管理员用户名: admin123</span>
<span> 超级管理员用户名:admin123</span>
</div>
<div class="tips">
<span> 商城管理员用户名: mall123</span>
<span> 商城管理员用户名:mall123</span>
</div>
<div class="tips">
<span> 推广管理员用户名: promotion123</span>
<span> 推广管理员用户名:promotion123</span>
</div>
</div>
</el-form>
<div class="copyright">
Copyright © 2021 xxx.com 版权所有 <a href="https://github.com/linlinjava/litemall">沪ICP备xxx号</a>
</div>
</div>
</template>
<script>
import { getKaptcha } from '@/api/login'
export default {
name: 'Login',
data() {
const validatePassword = (rule, value, callback) => {
if (value.length < 6) {
callback(new Error('管理员密码长度应大于6'))
} else {
callback()
}
}
return {
loginForm: {
username: 'admin123',
password: 'admin123',
code: ''
},
codeImg: '',
loginRules: {
username: [{ required: true, message: '管理员账户不允许为空', trigger: 'blur' }],
password: [
{ required: true, message: '管理员密码不允许为空', trigger: 'blur' },
{ validator: validatePassword, trigger: 'blur' }
]
},
passwordType: 'password',
loading: false
}
},
watch: {
$route: {
handler: function(route) {
this.redirect = route.query && route.query.redirect
},
immediate: true
}
},
created() {
this.getCode()
// window.addEventListener('hashchange', this.afterQRScan)
},
destroyed() {
// window.removeEventListener('hashchange', this.afterQRScan)
},
methods: {
getCode() {
getKaptcha().then(response => {
this.codeImg = response.data.data
})
},
handleLogin() {
this.$refs.loginForm.validate(valid => {
if (valid && !this.loading) {
this.loading = true
this.$store.dispatch('LoginByUsername', this.loginForm).then(() => {
this.loading = false
this.$router.push({ path: this.redirect || '/' })
}).catch(response => {
if (response.data.data) {
this.codeImg = response.data.data
}
this.$notify.error({
title: '失败',
message: response.data.errmsg
})
this.loading = false
})
} else {
return false
}
})
}
}
}
</script>
<style lang="scss">
/* 修复input 背景不协调 和光标变色 */
/* Detail see https://github.com/PanJiaChen/vue-element-admin/pull/927 */
$bg:#283443;
$light_gray:#fff;
$cursor: #fff;
@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 rgba(255, 255, 255, 0.1);
background: rgba(0, 0, 0, 0.1);
border-radius: 5px;
color: #454545;
}
}
</style>
<style lang="scss" scoped>
$bg:#2d3a4b;
$dark_gray:#889aa4;
$light_gray:#eee;
.login-container {
min-height: 100%;
width: 100%;
background-color: $bg;
overflow: hidden;
.login-form {
position: relative;
width: 520px;
max-width: 100%;
padding: 160px 35px 0;
margin: 0 auto;
overflow: hidden;
}
.login-code {
padding-top: 5px;
float: right;
img{
cursor: pointer;
vertical-align:middle
}
}
.tips {
font-size: 14px;
color: #fff;
margin-bottom: 10px;
span {
&:first-of-type {
margin-right: 16px;
}
}
}
.svg-container {
padding: 6px 5px 6px 15px;
color: $dark_gray;
vertical-align: middle;
width: 30px;
display: inline-block;
}
.title-container {
position: relative;
.title {
font-size: 26px;
color: $light_gray;
margin: 0px auto 40px auto;
text-align: center;
font-weight: bold;
}
}
.copyright {
font-size: 12px;
color: #fff;
position: absolute;
bottom: 0;
left: 50%;
transform: translate(-50%, -50%);
margin-bottom: 20px;
letter-spacing: 0.6px;
a {
font-weight: bold;
border-bottom: 1px solid #fff;
font-family: "PingFangSC-Semibold", sans-serif;
}
}
}
</style>