123456789101112131415161718192021222324252627282930 |
- <?php
- namespace app\common\validate;
- use think\Validate;
- /**
- * ============================================================================
- *
- * ============================================================================
- * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
- * 网站地址: https://www.valimart.net/
- * ----------------------------------------------------------------------------
- *
- * ============================================================================
- * 验证器
- */
- class Sellercomplain extends Validate
- {
- protected $rule = [
- 'appeal_message'=>'require|length:1,255',
- ];
- protected $message = [
- 'appeal_message.require'=>'投诉内容不能为空且必须小于100个字符|投诉内容不能为空且必须小于100个字符',
- 'appeal_message.length'=>'投诉内容不能为空且必须小于100个字符|投诉内容不能为空且必须小于100个字符',
- ];
- protected $scene = [
- 'appeal_save' => ['appeal_message'],
- ];
- }
|