merchantId); util::success($return); } //取分类下商品 shish 2019.12.2 public function actionGoodsList() { $categoryId = Yii::$app->request->get('categoryId'); //没有分类默认取商家第一个分类 $categoryId = !empty($categoryId) ? $categoryId : CategoryService::getTopCategoryId($this->merchantId); $where = []; $where['merchantId'] = $this->merchantId; $where['cId'] = $categoryId; $where['delStatus'] = 0; $data = GoodsCategoryService::getGoodsList($where); util::success($data); } }