From c04364f8651c73e5e01deb3c6f576e49050efae5 Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 17 Dec 2019 13:50:02 +0800 Subject: [PATCH] Update Keys.php --- app/wechat/controller/Keys.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/wechat/controller/Keys.php b/app/wechat/controller/Keys.php index 286e5618d..e9677b7bc 100644 --- a/app/wechat/controller/Keys.php +++ b/app/wechat/controller/Keys.php @@ -82,7 +82,7 @@ class Keys extends Controller } /** - * 添加关键字 + * 添加回复规则 * @auth true * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException @@ -91,12 +91,12 @@ class Keys extends Controller public function add() { $this->_applyFormToken(); - $this->title = '添加关键字规则'; + $this->title = '添加回复规则'; $this->_form($this->table, 'form'); } /** - * 编辑关键字 + * 编辑回复规则 * @auth true * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException @@ -105,12 +105,12 @@ class Keys extends Controller public function edit() { $this->_applyFormToken(); - $this->title = '编辑关键字规则'; + $this->title = '编辑回复规则'; $this->_form($this->table, 'form'); } /** - * 删除关键字 + * 删除回复规则 * @auth true * @throws \think\db\exception\DbException */ @@ -121,7 +121,7 @@ class Keys extends Controller } /** - * 禁用关键字 + * 禁用回复规则 * @auth true * @throws \think\db\exception\DbException */ @@ -132,7 +132,7 @@ class Keys extends Controller } /** - * 启用关键字 + * 启用回复规则 * @auth true * @throws \think\db\exception\DbException */