attributes = get_params(); return $this->asJson($form->userLeague()); } //获取用户联盟券 public function actionUserLeagueInfo() { $form = new LeagueForm(); $form->attributes = get_params(); return $this->asJson($form->userLeagueInfo()); } //获取商家联盟券 public function actionStoreLeague() { $form = new LeagueForm(); $form->attributes = get_params(); return $this->asJson($form->storeLeague()); } //获取商家联盟券记录 public function actionStoreLeagueLog() { $form = new LeagueForm(); $form->attributes = get_params(); return $this->asJson($form->storeLeagueLog()); } //商家联盟券信息 public function actionStoreLeagueInfo() { $form = new LeagueForm(); $form->attributes = get_params(); return $this->asJson($form->storeLeagueInfo()); } // }