feature/main20240421
郭嘉 8 months ago
parent 90950c995e
commit 1ae72635b6
  1. 7
      app/api/controller/Category.php

@ -50,8 +50,13 @@ class Category extends Controller
$merchantId = (int)$this->request->param('merchantId', 0);
$model = new CategoryModel;
$hasGoods = GoodsCategoryRel::getcategory($this->storeId,$merchantId);
print_r($hasGoods);die;
$arr = [];
if (!empty($hasGoods)) {
foreach ($hasGoods['data'] as $v) {
$arr[] = $v['category_id'];
}
}
if (!empty($arr)) {
$arr = ['cataIds' => $hasGoods];
}

Loading…
Cancel
Save