|
|
@@ -0,0 +1,90 @@
|
|
|
+<template>
|
|
|
+ <div class="login-wrap">
|
|
|
+ <div class="ms-title">后台管理系统</div>
|
|
|
+ <div class="ms-login">
|
|
|
+ <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm">
|
|
|
+ <el-form-item label="username" prop="username">
|
|
|
+ <el-input v-model="ruleForm.username"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="password" prop="password">
|
|
|
+ <el-input type="password" v-model="ruleForm.password"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <div class="login-btn">
|
|
|
+ <el-button type="primary" @click="submitForm('ruleForm')">登录</el-button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ data: function(){
|
|
|
+ return {
|
|
|
+ ruleForm: {
|
|
|
+ username: '',
|
|
|
+ password: ''
|
|
|
+ },
|
|
|
+ rules: {
|
|
|
+ username: [
|
|
|
+ { required: true, message: '请输入用户名', trigger: 'blur' }
|
|
|
+ ],
|
|
|
+ password: [
|
|
|
+ { required: true, message: '请输入密码', trigger: 'blur' }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ submitForm(formName) {
|
|
|
+ const self = this;
|
|
|
+ self.$refs[formName].validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ self.$router.push('/admin');
|
|
|
+ } else {
|
|
|
+ console.log('error submit!!');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style>
|
|
|
+ .login-wrap{
|
|
|
+ position: relative;
|
|
|
+ width:100%;
|
|
|
+ height:100%;
|
|
|
+ background: #324157;
|
|
|
+ }
|
|
|
+ .ms-title{
|
|
|
+ position: absolute;
|
|
|
+ top:50%;
|
|
|
+ width:100%;
|
|
|
+ margin-top: -230px;
|
|
|
+ text-align: center;
|
|
|
+ font-size:30px;
|
|
|
+ color: #fff;
|
|
|
+
|
|
|
+ }
|
|
|
+ .ms-login{
|
|
|
+ position: absolute;
|
|
|
+ left:50%;
|
|
|
+ top:50%;
|
|
|
+ width:350px;
|
|
|
+ height:160px;
|
|
|
+ margin:-150px 0 0 -190px;
|
|
|
+ padding:40px 20px 40px 10px;
|
|
|
+ border-radius: 5px;
|
|
|
+ background: #fff;
|
|
|
+ }
|
|
|
+ .login-btn{
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ .login-btn button{
|
|
|
+ width:43%;
|
|
|
+ height:40px;
|
|
|
+ }
|
|
|
+</style>
|