www.maiwd.cn // +---------------------------------------------------------------------- namespace app\admin\validate\wdsxh\mall; use think\Validate; class FreightRules extends Validate { /** * 验证规则 */ protected $rule = [ 'min|最小数' =>'require', 'max|最大数' =>'require|checkMax', ]; /** * 提示消息 */ protected $message = [ ]; /** * 验证场景 */ protected $scene = [ 'add' => ['min','max'], 'edit' => ['min','max'], ]; protected function checkMax($value,$rule,$data) { if($data['min'] > $value) { return '最小数不能大于最大数'; } return true; } }