文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

vue实现登录界面

2024-04-02 19:55

关注

使用Vue实现简单的用户登录界面,登录成功以后查询账号用户类型进行相应的页面路由跳转,效果如下图所示:

HTML部分:

<div class="loginbody">
    <div class="login">
      <div class="mylogin" align="center">
        <h4>登录</h4>
        <el-form
          :model="loginForm"
          :rules="loginRules"
          ref="loginForm"
          label-width="0px"
        >
          <el-form-item
            label=""
            prop="account"
            style="margin-top:10px;"
          >
            <el-row>
              <el-col :span='2'>
                <span class="el-icon-s-custom"></span>
              </el-col>
              <el-col :span='22'>
                <el-input
                  class="inps"
                  placeholder='账号'
                  v-model="loginForm.account">
                </el-input>
              </el-col>
            </el-row>
          </el-form-item>
          <el-form-item
            label=""
            prop="passWord"
          >
            <el-row>
              <el-col :span='2'>
                <span class="el-icon-lock"></span>
              </el-col>
              <el-col :span='22'>
                <el-input
                  class="inps"
                  type="password"
                  placeholder='密码'
                  v-model="loginForm.passWord"
                ></el-input>
              </el-col>
            </el-row>
          </el-form-item>
          <el-form-item style="margin-top:55px;">
            <el-button
              type="primary"
              round
              class="submitBtn"
              @click="submitForm"
            >登录
            </el-button>
          </el-form-item>
          <div class="unlogin">
            <router-link :to="{ path: '/forgetpwd'}">
              忘记密码?
            </router-link>
            |
            <router-link :to="{path: '/register'}">
              <a href="register.vue" align="right">注册新账号</a>
            </router-link>
          </div>
        </el-form>
      </div>
    </div>
  </div>

JS部分

 import {mapMutations} from "vuex";
 
  export default {
    name: "Login",
    data: function () {
      return {
        loginForm: {
          account: '',
          passWord: ''
        },
        loginRules: {
          account: [
            {required: true, message: "请输入账号", trigger: "blur"}
          ],
          passWord: [{required: true, message: "请输入密码", trigger: "blur"}]
        }
      }
    },
   
    methods: {
      ...mapMutations(['changeLogin']),
      submitForm() {
        let self = this;
        const userAccount = this.loginForm.account;
        const userPassword = this.loginForm.passWord;
        const userForm = new FormData();
        userForm.append('userAccount', userAccount);
        userForm.append('userPassword', userPassword);
        this.axios.post('URL1', userForm
        ).then((res) => {
          if (res.data == 0) {
            self.$message({
              type: 'error',
              message: '密码错误,登陆失败!'
            })
          }
          //token
          self.sessiontoken = res.headers['sessiontoken'];
          self.PageToken = Math.random().toString(36).substr(2);
          sessionStorage.setItem('PageToken', self.PageToken);
          self.changeLogin({sessiontoken: self.sessiontoken});
          //登录成功
          if (res.data == 1) {
            self.axios.get("URL2"
            ).then((res) => {
              if (res.data == null) {
                self.$message({
                  type: 'error',
                  message: '查询失败!'
                })
              } else {
                if (res.data.userType == 0) {
                  self.$router.push({path: '/supermana', replace: true})
                } else if (res.data.userType == 1) {
                  self.$router.push({path: '/manauser', replace: true})
                } else if (res.data.userType == 2) {
                  self.$router.push({path: '/ordinauser', replace: true})
                }
              }
            }).catch((error) => {
              console.log(error)
            })
          }
        })
      },
    }
  }

CSS部分

 .loginbody {
    overflow: scroll;
    overflow-y: hidden;
    overflow-x: hidden;
  }
 
  .login {
    width: 100vw;
    padding: 0;
    margin: 0;
    height: 100vh;
    font-size: 16px;
    background-position: left top;
    background-color: #242645;
    color: #fff;
    font-family: "Source Sans Pro";
    position: relative;
    background-image: url('/static/images/background.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
 
  .mylogin {
    width: 240px;
    height: 280px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 50px 40px 40px 40px;
    box-shadow: -15px 15px 15px rgba(6, 17, 47, 0.7);
    opacity: 1;
    background: linear-gradient(
      230deg,
      rgba(53, 57, 74, 0) 0%,
      rgb(0, 0, 0) 100%
    );
  }
 
  .inps input {
    border: none;
    color: #fff;
    background-color: transparent;
    font-size: 12px;
  }
 
  .submitBtn {
    background-color: transparent;
    color: #39f;
    width: 200px;
  }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-前端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯