MenuValidate.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\validate\admin;
  12. use think\Validate;
  13. class MenuValidate extends Validate
  14. {
  15. protected $failException = true;
  16. protected $rule = [
  17. 'pid|选择父级分类' => 'require|integer|max:5',
  18. 'icon|图标' => 'max:16',
  19. 'menu_name|按钮名' => 'require|max:32',
  20. 'route|菜单地址' => 'require|max:64',
  21. 'sort|排序' => 'integer|max:3',
  22. 'is_show|是否显示' => 'integer|in:0,1',
  23. ];
  24. public function isAuth()
  25. {
  26. unset($this->rule['icon|图标']);
  27. unset($this->rule['is_show|是否显示']);
  28. return $this;
  29. }
  30. }