You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
553 B
20 lines
553 B
<?php
|
|
|
|
namespace app\admin\validate;
|
|
|
|
class LoginValidate extends AdminBaseValidate
|
|
{
|
|
protected $rule = [
|
|
'user_name' => 'require|alphaNum',
|
|
'password' => 'require|length:5,40',
|
|
];
|
|
protected $message = [
|
|
'user_name.require' => '请填写用户名',
|
|
'user_name.alphaNum' => '用户名必须包含字母和数字',
|
|
'password.require' => '请填写密码',
|
|
'password.length' => '密码必须大于5个字符.',
|
|
];
|
|
protected $scene = [
|
|
'login' => ['user_name','password'],
|
|
];
|
|
}
|