Update Login.php

This commit is contained in:
Anyon 2020-04-02 18:08:43 +08:00
parent e4106692a3
commit 4caead4640

View File

@ -53,9 +53,9 @@ class Login extends Controller
} else {
$data = $this->_vali([
'username.require' => '登录账号不能为空!',
'username.min:4' => '登录账号不能少于4位有效字符!',
'username.min:4' => '登录账号不能少于4位字符!',
'password.require' => '登录密码不能为空!',
'password.min:4' => '登录密码不能少于4位有效字符!',
'password.min:4' => '登录密码不能少于4位字符!',
'verify.require' => '图形验证码不能为空!',
'uniqid.require' => '图形验证标识不能为空!',
]);