From f692fa325b889dcb6f0aa0d93cb276a0b7111ea2 Mon Sep 17 00:00:00 2001 From: wang hou sheng <76928547+wanghousheng@users.noreply.github.com> Date: Tue, 7 May 2024 21:23:04 +0800 Subject: [PATCH] 1 --- app/api/service/Goods.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/api/service/Goods.php b/app/api/service/Goods.php index cf1e6302..e4e433f9 100644 --- a/app/api/service/Goods.php +++ b/app/api/service/Goods.php @@ -240,8 +240,12 @@ class Goods extends GoodsService 'paihang' => 1, 'categoryId' => $v['category_id'], ], 3); - $list2 = $goodsList->toArray()['data']; - $v['goods_list'] = $this->newFormatGoodsList($list2); + $v['goods_list'] = []; + if (!$goodsList->isEmpty()) { + $list2 = $goodsList->toArray()['data']; + $v['goods_list'] = $this->newFormatGoodsList($list2); + } + } return $list; }