attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->search()); } //获取拼团活动商品列表 public function actionGetPtBanner() { $form = new PtActivityForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->getBanner()); } //获取拼团活动商品列表 public function actionGetPtGoodsCat() { $form = new PtActivityForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->getPtGoodsCat()); } //拼团广场 public function actionGetPtSquare() { $form = new PtActivityForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->getPtSquare()); } }