用户登录和登录后首页

用户登录

<template>
  <div>
    <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm">
      <el-form-item label="用户名" prop="userName">
        <el-input v-model="ruleForm.userName"></el-input>
      </el-form-item>
     <el-form-item label="密码" prop="password">
       <el-input v-model="ruleForm.password" type="password"></el-input>
     </el-form-item>



      <el-form-item>
        <el-button type="primary" @click="submitForm('ruleForm')">登录</el-button>
        <el-button @click="resetForm('ruleForm')">重置</el-button>
      </el-form-item>
    </el-form>



  </div>
</template>

<script>
  export default {
    data() {
      return {
        ruleForm: {
          userName: '',//用户名
          password: ''//密码
        },
        rules: {
          userName: [
            { required: true, message: '请输入用户名', trigger: 'blur' },
            { min: 2, max: 64, message: '长度在 2 到 64 个字符', trigger: 'blur' }
          ],
          password: [
             { required: true, message: '请输入密码', trigger: 'blur' },
             { min: 2, max: 64, message: '长度在 2 到 64 个字符', trigger: 'blur' }
           ]
        }
      };
    },
    methods: {
      submitForm(formName) {
        this.$refs[formName].validate((valid) => {
          if (valid) {//如果验证通过
           // alert('submit!');
             alert(this.ruleForm.userName);
              alert(this.ruleForm.password);
            //把数据提交到后台 json方式
            this.$axios.post("http://localhost:8080/user/login",this.ruleForm)
            .then(response=>{
              //做响应的后处理
              let res=response.data;
              //@todo
              //首选判断响应码
              //1、响应吗如果==0
              if(res.code==0){
                let user=res.list[0];
                //把用户信息缓存到前端
                sessionStorage.setItem("flag", "isLogin");
                sessionStorage.setItem("userName",user.userName);
                sessionStorage.setItem("useType",user.useType);
                //进到首页
                this.$router.push({path:"/index"})
              }else{
                //alert(res.msg);
                //2、响应码不是0
                //读取错误信息并显示
                this.$message(res.msg);
              }
            })
            .catch(error=>{
              console.log(error);
            })

          } else {
            console.log('error submit!!');
            return false;
          }
        });
      },
      resetForm(formName) {
        this.$refs[formName].resetFields();
      }
    }
  }
</script>

@RequestMapping("/login")
public ResponseBean login(@RequestBody Map<String, Object> userMap) {
    //{userName:wang.qj,password:123456}
    String userName=(String) userMap.get("userName");
    String password=(String) userMap.get("password");
    ResponseBean response=new ResponseBean();
    //后台:1、根据用户名进行查询,返回一个用户对象
    User db_user=service.findUserByName(userName);
    //2、如果没查询到直接提示用户名错误(返回错误码和错误描述) 
    if(db_user==null){
        //提示用户名错误
        response.setCode("1000");
        response.setMsg("用户名错误");
    }else{//3、如果查询到了
        //再比对数据库里查询到的对象的密码与前台传过来的密码是否一致 
        if(db_user.getPassword().equals(password)){
            //5、如果一致,就返回成功(携带用户完整信息),正常登录
            response.setCode("0");
            List<User> userList=new ArrayList();
            userList.add(db_user);
            response.setList(userList);
            //todo session
        }else{
            //4、如果不一致,直接提示密码错误 (返回错误码和错误描述) 
            response.setCode("1001");
            response.setMsg("密码错误");
        }
    }
    return response;
}

登录后首页

Index.vue

<template>
    <div id="aaa" >
    <el-container>
        <el-header>Header</el-header>
        <el-container>
            <el-aside>
              <leftMenu></leftMenu>
            </el-aside>
            <el-main>
              <router-view></router-view>
            </el-main>
        </el-container>
    </el-container>
    </div>
</template>

<script>
 //组件引用step 1 import
 import leftMenu from '@/components/common/Menu'

export default{
  data(){
    return{

    }
  },
  //第二步,加入到组件列表中
  components:{
    leftMenu
  }
}
</script>

<style>

    #aaa{
        height: 100%;
    }
    .el-header,.el-footer{
        background-color: #B3C0D1;
        color: #333;
        text-align: center;
        line-height: 100px;
    }
    .el-aside {
        height: 100%;
        background-color: #D3DCE6;
        color: #333;
        text-align: center;
        line-height: 200px;
    }
    .el-main {
        height: 100%;
        background-color: #E9EEF3;
        color: #333;
        text-align: center;
        /* line-height: 160px; */
    }
    html,body{
        height: 100%;
     margin:0;
    }
    #app{
        height: 100%;
    }
    .el-container{
        height: 100%;
    }
</style>

Menu.vue

<template>
  <el-menu
  class="el-menu-vertical-demo"
  background-color="#D3DCE6"
   active-text-color="#ffd04b"

  @open="handleOpen"
  @close="handleClose"
  :default-active="$router.path"
        router
  >
    <el-submenu index="1">
      <template slot="title">
        <i class="el-icon-setting"></i>
        <span>系统管理</span>
      </template>
      <el-menu-item-group>
        <el-menu-item index="/sys/constantTypeAdd">常数项分类管理</el-menu-item>
        <el-menu-item index="/sys/constantItemAdd">常数项管理</el-menu-item>
      </el-menu-item-group>
    </el-submenu>
  
  </el-menu>


</template>

<script>
  export default {
    methods: {
      handleOpen(key, keyPath) {
        console.log(key, keyPath);
      },
      handleClose(key, keyPath) {
        console.log(key, keyPath);
      }
    }
  }
</script>

<style>
</style>

嵌套路由

{
path: '/index',
name: 'index',
component: Index,
children:[{
path: '/sys/constantTypeAdd',
name: 'constantTypeAdd',
component: ConstantTypeAdd
},
{
path: '/sys/constantItemAdd',
name: 'constantItemAdd',
component: ConstantItemAdd
}
]
}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,816评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,729评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,300评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,780评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,890评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,084评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,151评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,912评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,355评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,666评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,809评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,504评论 4 334
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,150评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,882评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,121评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,628评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,724评论 2 351

推荐阅读更多精彩内容

  • 第一步:创建集群 image.png 如果已经有了集群的界面如下 image.png 第二步:创建用户(注意记住帐...
    罗双海阅读 240评论 0 0
  • ### 1.安装 nodejs ### 2.安装 git ### 3.下载 [vue-element-admin]...
    gogogo_e6cf阅读 358评论 0 0
  • 第一步:创建集群 image.png 如果已经有了集群的界面如下 image.png 第二步:创建用户(注意记住帐...
    张钰张钰张钰阅读 300评论 0 0
  • 1、树与数组转换对应的目录如下图所示: 1、树与数组转换 /* * @Author: zhr */ import...
    08f1b6c52d2a阅读 26,519评论 8 3
  • 1.安装 nodejs 2.安装 git 3.下载vue-element-admin[https://github...
    不留遗憾_dd5b阅读 276评论 0 0