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);