26 lines
600 B
PHP
26 lines
600 B
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2023-2024 美天智能科技
|
|
* @author 李志强
|
|
* @link http://www.meteteme.com
|
|
*/
|
|
|
|
namespace app\home\validate;
|
|
|
|
use think\Validate;
|
|
|
|
class UserCheck extends Validate
|
|
{
|
|
protected $rule = [
|
|
'username' => 'require',
|
|
'password' => 'require',
|
|
// 'captcha' => 'require|captcha',
|
|
];
|
|
|
|
protected $message = [
|
|
'username.require' => '用户名不能为空',
|
|
'password.require' => '密码不能为空',
|
|
'captcha.require' => '验证码不能为空',
|
|
'captcha.captcha' => '验证码不正确',
|
|
];
|
|
} |