feat: 添加横幅相关接口
This commit is contained in:
63
app/admin/validate/v1/SysBannerItemValidate.php
Normal file
63
app/admin/validate/v1/SysBannerItemValidate.php
Normal file
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\admin\validate\v1;
|
||||
|
||||
use think\Validate;
|
||||
|
||||
class SysBannerItemValidate extends Validate
|
||||
{
|
||||
/**
|
||||
* 定义验证规则
|
||||
* 格式:'字段名' => ['规则1','规则2'...]
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require|integer',
|
||||
'banner_id' => 'require|integer',
|
||||
'title' => 'require|max:128',
|
||||
'title_txt_color' => 'max:7',
|
||||
'desc' => 'max:255',
|
||||
'desc_txt_color' => 'max:7',
|
||||
'type' => 'in:image,video',
|
||||
'image' => 'max:255',
|
||||
'video' => 'max:255',
|
||||
'link_to' => 'max:64|in:article,goods_category,goods,custom',
|
||||
'link' => 'max:255',
|
||||
'sort' => 'integer',
|
||||
'status' => 'in:-1,1'
|
||||
];
|
||||
|
||||
/**
|
||||
* 定义错误信息
|
||||
* 格式:'字段名.规则名' => '错误信息'
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $message = [
|
||||
'id.require' => 'ID不能为空',
|
||||
'id.integer' => 'ID必须是整数',
|
||||
'banner_id.require' => '横幅项分类不能为空',
|
||||
'banner_id.integer' => '横幅项分类必须是整数',
|
||||
'title.require' => '名称不能为空',
|
||||
'title.max' => '名称最多不能超过128个字符',
|
||||
'title_txt_color.max' => '名称字体颜色最多不能超过7个字符',
|
||||
'desc.max' => '描述最多不能超过255个字符',
|
||||
'desc_txt_color.max' => '描述字体颜色最多不能超过7个字符',
|
||||
'type.in' => '显示类型必须是image或video',
|
||||
'image.max' => '图片地址最多不能超过255个字符',
|
||||
'video.max' => '视频地址最多不能超过255个字符',
|
||||
'link_to.max' => '连接类型最多不能超过64个字符',
|
||||
'link_to.in' => '连接类型必须是article,goods_category,goods,custom中之一',
|
||||
'link.max' => '连接最多不能超过255个字符',
|
||||
'sort.integer' => '排序值必须是整数',
|
||||
'status.in' => '状态必须是-1或1'
|
||||
];
|
||||
|
||||
// 新增场景
|
||||
public function sceneAdd()
|
||||
{
|
||||
return $this->remove('id', 'require|integer');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user