25 lines
490 B
PHP
25 lines
490 B
PHP
<?php
|
|
/**
|
|
* @filename TradeRule.php
|
|
* @author Jerry Yan <792602257@qq.com>
|
|
* @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']
|
|
];
|
|
} |