Files
nexusphp/admin/src/views/login.vue
T
2021-05-04 13:08:53 +08:00

132 lines
3.7 KiB
Vue

<template>
<div class="login-body">
<div class="login-container">
<div class="head">
<img class="logo" src="../assets/logo.png" />
<div class="name">
<div class="title">NexusPHP</div>
<div class="tips">Management system</div>
</div>
</div>
<el-form label-position="top" :rules="rules" :model="ruleForm" ref="loginForm" class="login-form">
<el-form-item label="Username" prop="username">
<el-input type="text" v-model.trim="ruleForm.username" autocomplete="off" @keyup.enter="submitForm"></el-input>
</el-form-item>
<el-form-item label="Password" prop="password">
<el-input type="password" v-model.trim="ruleForm.password" autocomplete="off" @keyup.enter="submitForm"></el-input>
</el-form-item>
<el-form-item style="margin-top: 50px">
<!-- <div style="color: #333">登录表示您已同意<a>服务条款</a></div>-->
<el-button style="width: 100%" type="primary" @click="submitForm">Submit</el-button>
<!-- <el-checkbox v-model="checked" @change="!checked">下次自动登录</el-checkbox>-->
</el-form-item>
</el-form>
</div>
</div>
</template>
<script>
import axios from '../utils/axios'
import { reactive, ref, toRefs } from 'vue'
import { localSet } from '../utils'
import api from '../utils/api'
import { useRouter, useRoute } from 'vue-router'
export default {
name: 'Login',
setup() {
const loginForm = ref(null)
const router = useRouter()
const state = reactive({
ruleForm: {
username: '',
password: ''
},
checked: true,
rules: {
username: [
{ required: 'true', }
],
password: [
{ required: 'true', }
]
}
})
const submitForm = async () => {
loginForm.value.validate((valid) => {
if (valid) {
api.login(state.ruleForm).then(res => {
console.log(res)
localSet('token', res.data.token)
localSet('userInfo', res.data)
router.push({name: 'dashboard'})
})
} else {
console.log('error submit!!')
return false;
}
})
}
const resetForm = () => {
loginForm.value.resetFields();
}
return {
...toRefs(state),
loginForm,
submitForm,
resetForm
}
}
}
</script>
<style scoped>
.login-body {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
background-color: #fff;
/* background-image: linear-gradient(25deg, #077f7c, #3aa693, #5ecfaa, #7ffac2); */
}
.login-container {
width: 420px;
height: 500px;
background-color: #fff;
border-radius: 4px;
box-shadow: 0px 21px 41px 0px rgba(0, 0, 0, 0.2);
}
.head {
display: flex;
justify-content: center;
align-items: center;
padding: 40px 0 20px 0;
}
.head img {
width: 100px;
height: 100px;
margin-right: 20px;
}
.head .title {
font-size: 28px;
color: #1BAEAE;
font-weight: bold;
}
.head .tips {
font-size: 12px;
color: #999;
}
.login-form {
width: 70%;
margin: 0 auto;
}
</style>
<style>
.el-form--label-top .el-form-item__label {
padding: 0;
}
.login-form .el-form-item {
margin-bottom: 12px;
}
</style>