From b90117bfa25c97b32def25e5d263d92988742eb6 Mon Sep 17 00:00:00 2001 From: szdot Date: Mon, 12 May 2025 02:38:29 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E7=B1=BB=20=20=E5=9E=8B=E3=80=91?= =?UTF-8?q?=EF=BC=9Afactor=20=E3=80=90=E5=8E=9F=20=20=E5=9B=A0=E3=80=91?= =?UTF-8?q?=EF=BC=9A=E5=88=86=E7=B1=BB=E5=88=97=E8=A1=A8=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?tag=E5=AD=97=E6=AE=B5=20=20=E7=94=A8=E4=BA=8E=E5=89=8D=E7=AB=AF?= =?UTF-8?q?=E5=AF=BC=E8=88=AA=E6=97=B6=E8=B7=B3=E8=BD=AC=20=E3=80=90?= =?UTF-8?q?=E8=BF=87=20=20=E7=A8=8B=E3=80=91=EF=BC=9A=20=E3=80=90=E5=BD=B1?= =?UTF-8?q?=20=20=E5=93=8D=E3=80=91=EF=BC=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FlyCube/Api/Controller/NormalController.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FlyCube/Api/Controller/NormalController.class.php b/FlyCube/Api/Controller/NormalController.class.php index 0a01068..6095a92 100644 --- a/FlyCube/Api/Controller/NormalController.class.php +++ b/FlyCube/Api/Controller/NormalController.class.php @@ -19,7 +19,7 @@ class NormalController extends PublicController { $where['shop_id'] = $_REQUEST["shop_id"]; $order['sort'] = 'desc'; - $field = array('id', 'pid', 'path', 'name', 'shop_id', 'sort', 'show', 'describe', 'photo'); + $field = array('id', 'pid', 'path', 'name', 'shop_id', 'sort', 'show', 'describe', 'photo', 'tag'); $categoryDb = D('category'); if ($categoryList = $categoryDb->where($where)->order($order)->field($field)->select()) { echo json_encode(array('status' => 1, 'msg' => '访问成功', "categoryList" => $categoryList));