attributes = post_params(); $model->store_id = get_store_id(); return $this->asJson($model->setGoods()); } //获取分红商品 public function actionList() { $model = new TeamGoodsForm(); $model->attributes = get_params(); $model->store_id = get_store_id(); return $this->asJson($model->list()); } //删除 public function actionDel() { $model = new TeamGoodsForm(); $model->attributes = get_params(); $model->store_id = get_store_id(); return $this->asJson($model->del()); } }