[ 'class' => LoginBehavior::className(), 'ignore' => [ ] ] ]); } /** * showdoc * @catalog 会员中心 * @title 会员中心 * @description 会员中心 * @method get * @url /api/level/lists * @return * @return_param * @remark */ public function actionLists() { $form = new LevelActionForm(); $form->user_id = \Yii::$app->user->identity->id; $data = $form->lists(); return $this->responseHandler($data); } }