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.

20 lines
613 B

7 years ago
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. class Friendlink extends Validate
  5. {
  6. // 验证规则
  7. protected $rule = [
  8. ['id', 'require|number','ID必填|ID必须是数字'],
  9. ['webname', 'require|max:60','链接名称必填|链接名称不能超过60个字符'],
  10. ['url', 'max:100','跳转链接不能超过100个字符'],
  11. ['group_id', 'number', '分组ID必须是数字'],
  12. ['rank', 'number','排序必须是数字'],
  13. ];
  14. protected $scene = [
  15. 'add' => ['webname', 'url', 'target', 'group_id', 'rank'],
  16. 'del' => ['id'],
  17. ];
  18. }