Navigation.php 968 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  9. * 网站地址: https://www.valimart.net/
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 验证器
  14. */
  15. class Navigation extends Validate
  16. {
  17. protected $rule = [
  18. 'nav_sort'=>'number',
  19. 'nav_title'=>'require',
  20. ];
  21. protected $message = [
  22. 'nav_sort.number'=>'排序只能为数字',
  23. 'nav_title.require'=>'标题不能为空',
  24. ];
  25. protected $scene = [
  26. 'add' => ['nav_sort', 'nav_title'],
  27. 'edit' => ['nav_sort', 'nav_title'],
  28. ];
  29. }