Sellersns.php 935 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. *
  9. * ----------------------------------------------------------------------------
  10. *
  11. * ============================================================================
  12. * 验证器
  13. */
  14. class Sellersns extends Validate
  15. {
  16. protected $rule = [
  17. 'content' => 'require|length:1,140',
  18. 'goods_url' => 'url'
  19. ];
  20. protected $message = [
  21. 'content.require' => '内容不能为空且不能超过140个字',
  22. 'content.length' => '内容不能为空且不能超过140个字',
  23. 'goods_url.url' => 'url格式不正确,请输入这正确的格式!'
  24. ];
  25. protected $scene = [
  26. 'store_sns_save' => ['content', 'goods_url'],
  27. ];
  28. }