From e5bbe5dbaa1817c2ef64b1868427972027a11187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E6=A1=83?= <1098598843@qq.com> Date: Tue, 31 Jan 2023 17:12:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E4=BF=AE=E6=94=B95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/Maintainentry.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/api/controller/Maintainentry.php b/app/api/controller/Maintainentry.php index 7625b11..94f2a74 100644 --- a/app/api/controller/Maintainentry.php +++ b/app/api/controller/Maintainentry.php @@ -1452,8 +1452,10 @@ class Maintainentry extends BaseController if (empty($type)) { $this->apiError('缺少参数'); } else { - $where['type'] = $type; - $where['status'] = 'normal'; + + $where[] = ['pid','<>',0]; + $where[] = ['type','=',$type]; + $where[] = ['status','=','normal']; $result = Db::table('fa_category')->where($where)->field('id,name,weigh')->order('weigh desc')->select(); if ($result) { $this->apiSuccess('获取成功', $result, 1);