render('index'); } /** * 收入明细 * * @return mixed */ public function actionIncomeLog() { if (!\Yii::$app->request->isAjax) { return $this->render($this->action->id); } $params = $this->request->get(); if (empty($params['store_id'])) { return $this->error('门店参数不存在'); } $service = new StoreStatisticsService($this->mall_id, $params['store_id']); return $this->success('success', $service->getIncomeLogList($params, $this->pageSize)); } }