118 lines
2.8 KiB
PHP
118 lines
2.8 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\custom;
|
||
|
||
|
||
use app\common\model\custom\Custom;
|
||
use app\common\model\custom\CustomContacts;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* CustomContacts验证器
|
||
* Class CustomContactsValidate
|
||
* @package app\adminapi\validate\custom
|
||
*/
|
||
class CustomContactsValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require',
|
||
'custom_id' => 'require|checkCustom',
|
||
'name' => 'require',
|
||
'phone' => 'mobile|unique:'.CustomContacts::class,
|
||
'email' => 'email',
|
||
'annex' => 'checkAnnex',
|
||
];
|
||
|
||
protected $message = [
|
||
'id.require' => '缺少必要参数',
|
||
'custom_id.require' => '请选择客户',
|
||
'name.require' => '请填写姓名',
|
||
'phone.mobile' => '手机号码格式错误',
|
||
'phone.unique' => '手机号码已存在',
|
||
'email.email' => '邮箱格式错误',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return CustomContactsValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/11 22:56
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id',true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return CustomContactsValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/11 22:56
|
||
*/
|
||
public function sceneEdit()
|
||
{}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return CustomContactsValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/11 22:56
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return CustomContactsValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/11 22:56
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkCustom($value): bool|string
|
||
{
|
||
$custom = Custom::where('id',$value)->findOrEmpty();
|
||
if($custom->isEmpty()){
|
||
return '客户不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkAnnex($value): bool|string
|
||
{
|
||
if(!empty($value) && $value != ''){
|
||
if(!is_array($value)){
|
||
return '附件格式错误';
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |