'require', 'org_id' => 'require', 'dept_id' => 'require', 'approve_id' => 'require', 'years' => 'require', 'document_preparation_time' => 'require', 'detail' => 'array|checkDetail', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', 'years' => '年份', 'document_preparation_time' => '制单时间', ]; /** * @notes 添加场景 * @return CostBudgetValidate * @author likeadmin * @date 2023/12/18 11:26 */ public function sceneAdd() { return $this->only(['approve_id', 'years','document_preparation_time', 'detail']); } /** * @notes 编辑场景 * @return CostBudgetValidate * @author likeadmin * @date 2023/12/18 11:26 */ public function sceneEdit() { return $this->only(['id', 'approve_id', 'years','document_preparation_time', 'detail']); } /** * @notes 删除场景 * @return CostBudgetValidate * @author likeadmin * @date 2023/12/18 11:26 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 详情场景 * @return CostBudgetValidate * @author likeadmin * @date 2023/12/18 11:26 */ public function sceneDetail() { return $this->only(['id']); } public function checkDetail($value, $rule, $data) { $firstData = $value[0] ?? []; if (empty($firstData)) { return true; } else { if (empty($firstData['cost_subject_id'])) { return '一级科目不能为空!'; } } return true; } }