You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
938 B
44 lines
938 B
<?php
|
|
|
|
namespace app\admin\validate\miniprogram;
|
|
use think\Validate;
|
|
|
|
class News extends Validate
|
|
{
|
|
/**
|
|
* 验证规则
|
|
*/
|
|
protected $rule = [
|
|
'title' => 'require|length:1,255',
|
|
'description' => 'require|length:1,255',
|
|
'url' => 'require|url',
|
|
'pic' => 'require',
|
|
];
|
|
|
|
/**
|
|
* 提示消息
|
|
*/
|
|
protected $message = [
|
|
|
|
];
|
|
|
|
/**
|
|
* 验证场景
|
|
*/
|
|
protected $scene = [
|
|
'add' => ['title', 'description', 'url', 'pic'],
|
|
'edit' => ['title', 'description', 'url', 'pic'],
|
|
];
|
|
|
|
public function __construct(array $rules = [], $message = [], $field = [])
|
|
{
|
|
$this->field = [
|
|
'title' => __('Title'),
|
|
'description' => __('Description'),
|
|
'url' => __('Url'),
|
|
'pic' => __('Pic'),
|
|
];
|
|
parent::__construct($rules, $message, $field);
|
|
}
|
|
|
|
}
|
|
|