* @date 2020/5/28 12:59 */ namespace wstmart\admin\validate; use think\Validate; class TradeRule extends Validate { protected $rule = [ ['title' ,'require|max:150','请输入标题|文章不能超过150个字符'], ['content' ,'require','请输入文章内容'] ]; protected $scene = [ 'add' => ['title','content'], 'edit' => ['title','content'] ]; }