From b19a78417bacb21f2234d5430dc8ef00b99d0dee Mon Sep 17 00:00:00 2001 From: peijunlei Date: Fri, 4 Sep 2026 15:38:07 +0800 Subject: [PATCH] =?UTF-8?q?fix(search):=20=E6=9B=B4=E6=96=B0=E8=A7=86?= =?UTF-8?q?=E9=A2=91=E5=92=8C=E5=85=AC=E5=91=8A=E7=9A=84=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=E5=80=BC=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将视频返回值描述从'视频'更新为'视频教程' - 将公告返回值描述从'公告'更新为'产品公告'以提供更清晰的信息 --- app/controller/frontend/SearchController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controller/frontend/SearchController.php b/app/controller/frontend/SearchController.php index a55f258..3eabe78 100644 --- a/app/controller/frontend/SearchController.php +++ b/app/controller/frontend/SearchController.php @@ -124,10 +124,10 @@ class SearchController extends BaseController return ['download', '下载中心']; } if (isset($sets['video'][$contentId])) { - return ['video', '视频']; + return ['video', '视频教程']; } if (isset($sets['announce'][$contentId])) { - return ['announce', '公告']; + return ['announce', '产品公告']; } return ['content', '内容']; }