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('门店参数不存在'); } $info = (new StoreService(['mall_id' => $this->mall_id, 'store_id' => $params['store_id']]))->getIncomeLogList($params, $this->pageSize); return $this->success('success', $info); } }