jazz
2022-08-24 a4b91616ceae752e11cb6fc5198ebadf52cd68ed
src/pages/login/index.vue
@@ -3,7 +3,7 @@
    <el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form" autocomplete="on" label-position="left">
      <div class="title-container">
        <h3 class="title">”项目名称“</h3>
        <h3 class="title">短信中心</h3>
      </div>
      <el-form-item prop="username">
@@ -97,7 +97,7 @@
    }
    const validatePassword = (rule, value, callback) => {
      if (value.length < 5) {
        callback(new Error('账号不能少于5位'))
        callback(new Error('密码不能少于5位'))
      } else {
        callback()
      }