123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace app\validate\admin\setting;
- use think\Validate;
- class SystemAdminValidate extends Validate
- {
-
- protected $rule = [
- 'account' => ['require', 'alphaDash', 'length:4,64'],
- 'conf_pwd' => 'require',
- 'pwd' => ['require', 'length:4,64'],
- 'real_name' => 'require',
- 'roles' => ['require', 'array'],
- 'phone' => ['require', 'mobile'],
- 'head_pic' => 'max:255',
- ];
-
- protected $message = [
- 'account.require' => '请填写管理员账号',
- 'account.alphaDash' => '管理员账号应为数字和字母',
- 'account.length' => '管理员账号长度4-64位字符',
- 'conf_pwd.require' => '请输入确认密码',
- 'pwd.require' => '请输入密码',
- 'pwd.length' => '密码长度4-64位字符',
- 'real_name.require' => '请输管理员姓名',
- 'roles.require' => '请选择管理员身份',
- 'roles.array' => '身份必须为数组',
- 'phone.require' => '请填写管理员电话',
- 'phone.mobile' => '电话格式不正确',
- 'head_pic.max' => '头像不能超过255个字符',
- ];
- protected $scene = [
- 'get' => ['account', 'pwd'],
- 'update' => ['account', 'roles', 'real_name', 'phone'],
- 'save' => ['account', 'pwd', 'conf_pwd', 'roles', 'real_name', 'phone'],
- 'supplier_save' => ['account', 'pwd', 'conf_pwd', 'real_name', 'phone', 'head_pic'],
- 'supplier_update' => ['account', 'real_name', 'phone', 'head_pic'],
- ];
- }
|