接口修改5

This commit is contained in:
彭桃 2023-01-31 17:12:05 +08:00
parent b3cdc4f743
commit e5bbe5dbaa

View File

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