1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\common\validate;
- use think\Validate;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 验证器
- */
- class Link extends Validate
- {
- protected $rule = [
- 'link_sort' => 'number',
- 'link_title' => 'require',
- ];
- protected $message = [
- 'link_sort.number' => '排序只能为数字',
- 'link_title.require' => '链接名称不能为空',
- ];
- protected $scene = [
- 'add' => ['link_sort', 'link_title'],
- 'edit' => ['link_sort', 'link_title'],
- ];
- }
|