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.
55 lines
1.8 KiB
55 lines
1.8 KiB
<?php
|
|
/**
|
|
* +----------------------------------------------------------------------
|
|
* | 管理员列表验证器
|
|
* +----------------------------------------------------------------------
|
|
* .::::.
|
|
* .::::::::. | AUTHOR: siyu
|
|
* ::::::::::: | EMAIL: 407593529@qq.com
|
|
* ..:::::::::::' | DATETIME: 2020/02/03
|
|
* '::::::::::::'
|
|
* .::::::::::
|
|
* '::::::::::::::..
|
|
* ..::::::::::::.
|
|
* ``::::::::::::::::
|
|
* ::::``:::::::::' .:::.
|
|
* ::::' ':::::' .::::::::.
|
|
* .::::' :::: .:::::::'::::.
|
|
* .:::' ::::: .:::::::::' ':::::.
|
|
* .::' :::::.:::::::::' ':::::.
|
|
* .::' ::::::::::::::' ``::::.
|
|
* ...::: ::::::::::::' ``::.
|
|
* ```` ':. ':::::::::' ::::..
|
|
* '.:::::' ':'````..
|
|
* +----------------------------------------------------------------------
|
|
*/
|
|
namespace app\admin\validate;
|
|
|
|
use think\Validate;
|
|
|
|
class Admin extends Validate
|
|
{
|
|
protected $rule = [
|
|
'status|状态' => [
|
|
'require' => 'require',
|
|
'max' => '1',
|
|
],
|
|
'username|用户名' => [
|
|
'require' => 'require',
|
|
'max' => '25',
|
|
'min' => '4',
|
|
],
|
|
'password|密码' => [
|
|
'max' => '50',
|
|
'min' => '5',
|
|
],
|
|
'nickname|昵称' => [
|
|
'require' => 'require',
|
|
'max' => '25',
|
|
'min' => '4',
|
|
],
|
|
'image|头像' => [
|
|
'require' => 'require',
|
|
]
|
|
];
|
|
}
|