Sellercomplain.php 1.1 KB

123456789101112131415161718192021222324252627282930
  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 Sellercomplain extends Validate
  16. {
  17. protected $rule = [
  18. 'appeal_message'=>'require|length:1,255',
  19. ];
  20. protected $message = [
  21. 'appeal_message.require'=>'投诉内容不能为空且必须小于100个字符|投诉内容不能为空且必须小于100个字符',
  22. 'appeal_message.length'=>'投诉内容不能为空且必须小于100个字符|投诉内容不能为空且必须小于100个字符',
  23. ];
  24. protected $scene = [
  25. 'appeal_save' => ['appeal_message'],
  26. ];
  27. }