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