109 lines
2.6 KiB
PHP
109 lines
2.6 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\oa\validate\works\rcbg;
|
||
|
||
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 工作汇报验证器
|
||
* Class OaWorkValidate
|
||
* @package app\adminapi\validate\works\rcbg
|
||
*/
|
||
class OaWorkValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require',
|
||
'type' => 'require|integer|in:1,2,3',
|
||
'type_user' => 'require|checkTypeUser',
|
||
'works' => 'require',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'type' => '类型',
|
||
'type_user' => '接受人员ID',
|
||
'works' => '汇报工作内容',
|
||
'annex' => '附件'
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return OaWorkValidate
|
||
* @author likeadmin
|
||
* @date 2024/05/23 15:56
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->only(['type','type_user','works','plans','remark','annex']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return OaWorkValidate
|
||
* @author likeadmin
|
||
* @date 2024/05/23 15:56
|
||
*/
|
||
public function sceneEdit()
|
||
{
|
||
return $this->only(['id','type','works','plans','remark','annex'])->remove('type_user',true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return OaWorkValidate
|
||
* @author likeadmin
|
||
* @date 2024/05/23 15:56
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return OaWorkValidate
|
||
* @author likeadmin
|
||
* @date 2024/05/23 15:56
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkTypeUser($value): bool|string
|
||
{
|
||
if(empty($value) || empty(explode(',',$value))){
|
||
return '接受人员数据格式错误';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |