前端Vue+Element UI案例:通用后台管理系统-登陆页面Login

Posted karshey

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端Vue+Element UI案例:通用后台管理系统-登陆页面Login相关的知识,希望对你有一定的参考价值。

文章目录

本篇很短,因为只有一个页面。没有功能。

目标

  • 登陆页面,路由为/login
  • 有表单验证

代码

0.路由

在router的index.js文件中的routes中添加对象:


    path:'/login',
    component:Login

1.结构

显然是表单,我们对表单已经很熟悉了。

<template>
    <el-form :model="login" status-icon :rules="rules" ref="login" label-width="100px">
        <!-- h3要放在里面:只能有一个根,且title也是表单的一部分 -->
        <h3 class="login_title">用户登录</h3>
        <!-- prop对应rules里的键 -->
        <el-form-item label="用户名" prop="username">
            <el-input type="password" v-model="login.username" autocomplete="off"></el-input>
        </el-form-item>

        <el-form-item label="密码" prop="password">
            <el-input type="password" v-model="login.password" autocomplete="off"></el-input>
        </el-form-item>

        <el-form-item>
            <el-button type="primary">提交</el-button>
        </el-form-item>
    </el-form>
</template>

2.校验规则

// 校验规则
rules: 
    username:[required:'true',message:'请输入用户名',trigger:'blur'],
    password:[required:'true',message:'请输入用户名',trigger:'blur']

效果:

3.样式

css:

.login_container 
    width: 350px;
    border: 1px solid #eaeaea;

    // 居中
    margin: 180px auto;

    padding: 35px 35px 15px 35px;

    // 让padding在width里面
    box-sizing: border-box;

    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 0 25px #cac6c6;

    .login_title 
        color: #505458;
        // 左右居中
        text-align: center;
        margin-bottom: 40px;
    

    .el-input 
        width: 198px;
    

html中的样式:

表单域标签的宽度。

<el-form 
class="login_container" 
:model="login" 
status-icon :rules="rules" 
ref="login" 
label-width="70px">

让提交button在中间:

<el-form-item>
    <el-button type="primary" 
    style="margin-left:30px;margin-top:10px">
    提交
    </el-button>
</el-form-item>

总代码

Login.vue

<template>
    <el-form class="login_container" :model="login" status-icon :rules="rules" ref="login" label-width="70px">
        <!-- h3要放在里面:只能有一个根,且title也是表单的一部分 -->
        <h3 class="login_title">用户登录</h3>
        <!-- prop对应rules里的键 -->
        <el-form-item label="用户名" prop="username">
            <el-input v-model="login.username" autocomplete="off"></el-input>
        </el-form-item>

        <el-form-item label="密码" prop="password">
            <el-input type="password" v-model="login.password" autocomplete="off"></el-input>
        </el-form-item>

        <el-form-item>
            <el-button type="primary" style="margin-left:30px;margin-top:10px">提交</el-button>
        </el-form-item>
    </el-form>
</template>

<script>
export default 
    data() 
        return 
            // 登陆数据
            login: 
                username: '',
                password: ''
            ,
            // 校验规则
            rules: 
                username: [ required: 'true', message: '请输入用户名', trigger: 'blur' ],
                password: [ required: 'true', message: '请输入用户名', trigger: 'blur' ]
            
        
    ,

</script>

<style lang="less" scoped>
.login_container 
    width: 350px;
    border: 1px solid #eaeaea;

    // 居中
    margin: 180px auto;

    padding: 35px 35px 15px 35px;

    // 让padding在width里面
    box-sizing: border-box;

    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 0 25px #cac6c6;

    .login_title 
        color: #505458;
        // 左右居中
        text-align: center;
        margin-bottom: 40px;
    

    .el-input 
        width: 198px;
    

</style>

效果


表单验证失败:

表单验证成功:

以上是关于前端Vue+Element UI案例:通用后台管理系统-登陆页面Login的主要内容,如果未能解决你的问题,请参考以下文章

前端Vue+Element UI案例:通用后台管理系统-项目总结

前端Vue+Element UI案例:通用后台管理系统-登陆不同用户显示不同菜单动态添加路由

前端Vue+Element UI案例:通用后台管理系统-导航栏

前端Vue+Element UI案例:通用后台管理系统-Echarts图表:折线图柱状图饼状图

前端Vue+Element UI案例:通用后台管理系统-登陆页面Login

前端Vue+Element UI案例:通用后台管理系统-Home组件:卡片表格