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.
31 lines
631 B
31 lines
631 B
<?php
|
|
|
|
namespace app\admin\validate;
|
|
|
|
use \think\Validate;
|
|
|
|
/**
|
|
* 密码修改
|
|
*/
|
|
class Password extends Validate
|
|
{
|
|
//验证规则
|
|
protected $rule = [
|
|
'oldPwd' => 'require',
|
|
'newPwd' => 'require',
|
|
'newPwd' => 'length:6,10',
|
|
'newPwd2' => 'require|confirm:newPwd',
|
|
];
|
|
|
|
//提示信息
|
|
protected $message = [
|
|
'oldPwd' => '原始密码必填',
|
|
'newPwd' => '新密码必填',
|
|
'newPwd.length' => '密码长度为6到10位',
|
|
'newPwd2' => '确认密码必填',
|
|
'newPwd2.confirm' => '新密码不相等',
|
|
];
|
|
|
|
|
|
}
|