90 lines
2.5 KiB
Vue
90 lines
2.5 KiB
Vue
<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>
|
|
<p style="font-size:12px;line-height:30px;color:#999;">Tips : 用户名和密码随便填。</p>
|
|
</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('/readme');
|
|
} 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> |