辉煌仪奇 2022-04-18 15:55 采纳率: 47.4%
浏览 91
已结题

vue elmentui form表单验证失败

elmentUI 表单验证失败,不管怎么验证都是未输入
如下

img


vue代码如下
我改怎么修改才能正常校验

<template>
  <div class="container">
    <div class="main">
      <!-- 整个注册盒子 -->
      <div class="loginbox">
        <!-- 左侧的注册盒子 -->
        <div class="loginbox-in">
          <el-form v-model="userobj" class="userbox" :rules="rules">

            <el-form-item lable="用户名" prop="username">
              <el-input class="user" id="user" v-model="userobj.name" placeholder="用户名">
                <i class="el-input__icon el-icon-user-solid" slot="prefix"></i>
              </el-input>
            </el-form-item>
            <el-form-item lable="密码" prop="userpwd">
              <el-input class="pwd" id="password" type="password" v-model="userobj.pwd" placeholder="密码">
                <i class="el-input__icon el-icon-s-help" slot="prefix"></i>
              </el-input>
            </el-form-item>
            <el-form-item lable="验证码" prop="chackcode">
              <el-input class="pwd" id="code" type="text" v-model="userobj.code" placeholder="验证码">
                <template slot="append" style="padding: 0"><img :src="codedata" style="width: 80px;height: 30px"
                                                                slot="suffix" @click="getcolorimg"></template>

              </el-input>
            </el-form-item>

          </el-form>
          <div class="log-box">
            <div class="log-box-text" @click="Forgetpassword"> 忘记密码</div>
            <button class="login_btn" @click="login">登录</button>
          </div>
          <button class="register_btn" @click="gotoregister">若无账号请点击注册</button>
        </div>

        <!-- 右侧的注册盒子 -->
        <div class="background">
          <div class="title">Welcome to LED System Management Center</div>
        </div>

      </div>
    </div>
  </div>
</template>

<script>
export default {
  name: "Login",

  data: function () {
    return {
      //表单校验
      rules: {
        username: [
          {required: true, message: "请输入用户名", trigger: "blur"},
          {min: 2, max: 50, message: '长度在 2 到 50 个字符', trigger: 'blur'}
        ],
        userpwd: [
          {required: true, message: "请输入密码", trigger: "blur"},
          {min: 6, max: 50, message: "长度在 6 到 50 个字符", trigger: "blur"}
        ],
        chackcode: [
          {required: true, message: "请输入验证码", trigger: "blur"},
          {min: 4, max: 4, message: "验证码长度不符", trigger: "blur"}
        ]

      },
      userobj: {name: "", code: "", pwd: ""},
      //验证码图片
      codedata: "",

    }
  },
  created() {
    // TODO:创建钩子函数
    this.getcolorimg()
  },

  methods: {
    getcolorimg() {
      //  获取验证码
      this.$http.get("/GetCaptcha",)

          .then((res) => {
            console.log(res)
            this.codedata = res
          })
    },
    gotoregister() {
      this.$router.push("Register")
    },
    login() {
      // if this
      // this.$http.post("register", {"name": this.name, 'pwd': this.pwd})
      console.log(this.userobj)
    },
    Forgetpassword() {

    },

  },


}
</script>

<style lang="less" scoped>
* {
  user-select: none;
  cursor: default;
}

/deep/ .el-input-group__append {
  padding: 0 !important;
}

.container {
  width: 100%;
  height: 100%;
  background: #445b53;
}

.loginbox {
  display: flex;
  position: absolute;
  width: 800px;
  height: 400px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 #4E655D;
}

.loginbox-in {
  background-color: #89AB9E;
  width: 240px;
}

.userbox {
  margin-top: 160px;
  width: 230px;
  height: 190px;
  margin-left: 5px;
}

.pwdbox {
  height: 30px;
  width: 225px;
  display: flex;
  margin-left: 5px;
}

.background {
  width: 570px;
  background-image: url('../assets/img/Christmas_Trees.png');
  background-size: cover;
  font-family: sans-serif;
}

.title {
  margin-top: 320px;
  font-weight: bold;
  font-size: 20px;
  color: #4E655D;

}

.title:hover {
  font-size: 21px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.uesr-text {
  position: left;
}

input {
  outline-style: none;
  border: 0;
  border-bottom: 1px solid #E9E9E9;
  background-color: transparent;
  height: 20px;
  font-family: sans-serif;
  font-size: 15px;
  color: #445b53;
  font-weight: bold;
}

/* input::-webkit-input-placeholder{
   color:#E9E9E9;
} */
input:focus {
  border-bottom: 2px solid #445b53;
  background-color: transparent;
  transition: all 0.2s ease-in;
  font-family: sans-serif;
  font-size: 15px;
  color: #445b53;
  font-weight: bold;

}

input:hover {
  border-bottom: 2px solid #445b53;
  background-color: transparent;
  transition: all 0.2s ease-in;
  font-family: sans-serif;
  font-size: 15px;
  color: #445b53;
  font-weight: bold;

}

input:-webkit-autofill {
  /* 修改默认背景框的颜色 */
  box-shadow: 0 0 0px 1000px #89AB9E inset !important;
  /* 修改默认字体的颜色 */
  -webkit-text-fill-color: #445b53;
}

input:-webkit-autofill::first-line {
  /* 修改默认字体的大小 */
  font-size: 15px;
  /* 修改默认字体的样式 */
  font-weight: bold;
}

.log-box {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  width: 190px;
  margin-left: 30px;
  color: #4E655D;
  margin-top: -5px;
  align-items: center;

}

.log-box-text {
  color: #4E655D;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  user-select: none;
}

.login_btn {
  background-color: #5f8276; /* Green */
  border: none;
  color: #FAFAFA;
  padding: 5px 22px;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  border-radius: 20px;
  outline: none;
}

.login_btn:hover {
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  background-color: #0b5137;
  transition: all 0.2s ease-in;
}

.warn {
  margin-top: 60px;
  /* margin-right:120px; */
  margin-left: -120px;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 17px;
}

.register_btn {
  background-color: transparent; /* Green */
  border: none;
  text-decoration: none;
  font-size: 12px;
  /* border-radius: 20px;   */
  color: #4E655D;
  font-size: 12px;
  text-decoration: underline;
  display: flex;
  margin-left: 25px;
  outline: none;

}

.register_btn:hover {
  font-weight: bold;
  cursor: pointer;
}

@font-face {
  font-family: "iconfont";
  src: url('../assets/font/iconfont.eot');
  src: url('../assets/font/iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/font/iconfont.woff2') format('woff2'), url('../assets/font/iconfont.woff') format('woff'), url('../assets/font/iconfont.ttf') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */ url('../assets/font/iconfont.svg#iconfont') format('svg');
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 20px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 22px;
  color: #4E655D;
  margin-right: 10px;
  margin-top: 3px;
}

.icon-key:before {
  content: "\e775";
}

.icon-account:before {
  content: "\e817";
}


</style>
  • 写回答

4条回答 默认 最新

  • cxy_12345 2022-04-18 16:28
    关注

    img

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

问题事件

  • 系统已结题 4月26日
  • 已采纳回答 4月18日
  • 创建了问题 4月18日

悬赏问题

  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作