mirror of https://github.com/1099438829/apeblog
30 lines
868 B
PHP
30 lines
868 B
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | HulaCWMS 呼啦企业网站管理系统
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2021 https://www.kaifashu.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Author: 开发树
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\common\validate;
|
||
|
||
use think\Validate;
|
||
|
||
/**
|
||
* 后台菜单验证器
|
||
*/
|
||
class MessageForm extends Validate
|
||
{
|
||
|
||
protected $rule = [
|
||
'content' => 'require',
|
||
'tel' => 'number|max:11',
|
||
];
|
||
protected $message = [
|
||
'content.require' => '请输入留言内容!',
|
||
'tel.number' => '手机号必须是数字!',
|
||
'tel.max' => '手机号不得超过11位!',
|
||
];
|
||
}
|