12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace app\validate\store;
- use think\Validate;
- class StoreAdminValidate extends Validate
- {
-
- protected $rule = [
- 'account' => ['require', 'length:4,64'],
- 'conf_pwd' => ['require', 'length:4,64'],
- 'pwd' => ['require', 'length:4,64'],
- 'staff_name' => 'require',
- 'roles' => ['require', 'array'],
- ];
-
- protected $message = [
- 'account.require' => '请填写门店管理员账号',
- 'account.length' => '门店管理员账号长度4-64位字符',
- 'conf_pwd.require' => '请输入确认密码',
- 'conf_pwd.length' => '确认密码长度4-64位字符',
- 'pwd.require' => '请输入密码',
- 'pwd.length' => '密码长度4-64位字符',
- 'staff_name.require' => '请输门店管理员姓名',
- 'roles.require' => '请选择管理员身份',
- 'roles.array' => '身份必须为数组',
- ];
- protected $scene = [
- 'get' => ['account', 'pwd'],
- 'update' => ['account', 'roles'],
- ];
- }
|