From bc60c3b9b95d8c39b5d48dac2138f9423adf7cbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=8D=8E=E6=B8=85?= <18691022700@163.com> Date: Sun, 7 Dec 2025 16:38:42 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=20=E6=88=BF=E9=97=B4?= =?UTF-8?q?=E6=A0=87=E7=AD=BE=E9=87=8D=E6=96=B0=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/controller/Index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/api/controller/Index.php b/application/api/controller/Index.php index b0c205b..1256a75 100644 --- a/application/api/controller/Index.php +++ b/application/api/controller/Index.php @@ -32,7 +32,7 @@ class Index extends BaseCom $list = db::name('vs_room_type')->where(['status' => 1, 'deletetime' => 0])->field('id,type_name as label_name')->order('sort asc')->select(); //给前面面添加一组数据 - array_unshift($list, ['id' => -2, 'label_name' => '练歌']); + array_unshift($list, ['id' => -2, 'label_name' => '练歌房']); //给前面添加一组数据 array_unshift($list, ['id' => -1, 'label_name' => '热门']); return V(1, '获取成功', $list);