From 9fa0267791de17ce0aa02e4037c36ba07237260c Mon Sep 17 00:00:00 2001 From: wanghongjun <1445693971@qq,com> Date: Mon, 11 Sep 2023 15:36:02 +0800 Subject: [PATCH] =?UTF-8?q?=E9=99=90=E5=88=B6=E5=AE=A2=E6=9C=8D=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E9=95=BF=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/validate/CustomerService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/validate/CustomerService.php b/app/validate/CustomerService.php index 21229d3..435e7cd 100644 --- a/app/validate/CustomerService.php +++ b/app/validate/CustomerService.php @@ -14,7 +14,7 @@ class CustomerService extends Validate * @var array */ protected $rule = [ - 'name|客服名称' => 'require', + 'name|客服名称' => 'require|max:6', 'wx_number|微信号码' => 'require|min:6|max:20|alphaDash', 'id|客服id' => 'require|number', ];