120 lines
3.0 KiB
PHP
120 lines
3.0 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\adminapi\validate\project;
|
||
|
||
|
||
use app\common\model\custom\CustomerDemand;
|
||
use app\common\model\project\Project;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 竞争对手验证器
|
||
* Class CompetitorValidate
|
||
* @package app\adminapi\validate\project
|
||
*/
|
||
class CompetitorValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => '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;
|
||
}
|
||
|
||
} |