'require', 'project_id' => 'require|checkProject', 'customer_demand_id' => 'require|checkCustomerDemand', 'competitor_name' => 'require', 'competitor_contacts_phone' => 'mobile', 'annex' => 'checkAnnex', ]; protected $message = [ 'id.require' => '缺少必要参数', 'project_id.require' => '请选择项目', 'customer_demand_id.require' => '请选择客户需求', 'competitor_name.require' => '请填写竞争对手名称', 'competitor_contacts_phone.mobile' => '联系电话格式错误' ]; /** * @notes 添加场景 * @return CompetitorValidate * @author likeadmin * @date 2023/11/24 22:01 */ public function sceneAdd() { return $this->remove('id', true); } /** * @notes 编辑场景 * @return CompetitorValidate * @author likeadmin * @date 2023/11/24 22:01 */ public function sceneEdit() { } /** * @notes 删除场景 * @return CompetitorValidate * @author likeadmin * @date 2023/11/24 22:01 */ public function sceneDelete() { return $this->only(['id'])->remove('id', 'checkData'); } /** * @notes 详情场景 * @return CompetitorValidate * @author likeadmin * @date 2023/11/24 22:01 */ public function sceneDetail() { return $this->only(['id']); } public function checkProject($value): bool|string { $project = Project::where('id', $value)->findOrEmpty(); if ($project->isEmpty()) { return '项目不存在'; } return true; } public function checkCustomerDemand($value, $rule, $data): bool|string { $customDemand = CustomerDemand::where('id', $value)->findOrEmpty(); if ($customDemand->isEmpty()) { return '客户需求不存在'; } if ($customDemand['project_id'] != $data['project_id']) { return '客户需求与项目信息不一致'; } return true; } }