attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->getList()); } //获取品牌列表 public function actionSaveBrand() { $form = new GoodsBrandForm(); $form->attributes = post_params(); $form->store_id = get_store_id(); return $this->asJson($form->saveBrand()); } //设置品牌状态 public function actionSetStatus() { $form = new GoodsBrandForm(); $form->attributes = get_params(); $form->store_id = get_store_id(); return $this->asJson($form->setStatus()); } }