mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-13 20:02:49 +00:00
34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\api\validate\user;
|
||
|
||
|
||
use think\Validate;
|
||
|
||
class StoreServiceFeedbackValidate extends Validate
|
||
{
|
||
protected $regex = ['phone' => '/^1[3456789]\d{9}$/'];
|
||
|
||
protected $rule = [
|
||
'phone' => 'require|regex:phone',
|
||
'rela_name' => 'require',
|
||
'content' => 'require',
|
||
];
|
||
|
||
protected $message = [
|
||
'phone.require' => '410157',
|
||
'phone.regex' => '410158',
|
||
'content.require' => '410163',
|
||
'rela_name.require' => '410155',
|
||
];
|
||
}
|