| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace api\modules\v1\controllers\user;
- use Yii;
- use api\services\TeamService;
- use api\controllers\OnAuthController;
- /**
- * Class TeamController
- * @package api\modules\v1\controllers\user
- */
- class TeamController extends OnAuthController
- {
- /**
- * @var string
- */
- public $modelClass = '';
- /**
- * 团队业绩
- *
- * @return mixed
- */
- public function actionAchievement()
- {
- $params = Yii::$app->request->get();
- $service = new TeamService(['mall_id' => $this->mall_id]);
- return $this->success('ok', $service->getTeamAchievementPageList($this->user_id, $params));
- }
- }
|