20 lines
738 B
PHP
Executable File
20 lines
738 B
PHP
Executable File
<?php
|
|
namespace wstmart\common\validate;
|
|
use think\Validate;
|
|
/**
|
|
* ============================================================================
|
|
* 订单投诉验证器
|
|
*/
|
|
class OrderComplains extends Validate{
|
|
protected $rule = [
|
|
['complainType' ,'in:1,2,3,4','无效的投诉类型!'],
|
|
['complainContent' ,'require|length:3,600','投诉内容不能为空|投诉内容应为3-200个字'],
|
|
['respondContent' ,'require|length:3,600','应诉内容不能为空|应诉内容应为3-200个字'],
|
|
];
|
|
|
|
protected $scene = [
|
|
'add' => ['complainType','complainContent'],
|
|
'edit' => ['complainType','complainContent'],
|
|
'respond' =>['respondContent'],
|
|
];
|
|
} |