OpenAuthValidate.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2024 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\merchant;
  12. use think\Validate;
  13. class OpenAuthValidate extends Validate
  14. {
  15. protected $failException = true;
  16. protected $rule = [
  17. 'title|标题' => 'require',
  18. 'auth|权限' => 'require|checkAuth',
  19. ];
  20. public function checkAuth()
  21. {
  22. return true;
  23. }
  24. public function sceneEdit()
  25. {
  26. return $this->only(['title','auth']);
  27. }
  28. }