service = new RefundService( ['mall_id' => $this->mall_id] ); } /** * 退款订单列表 * * @return void */ public function actionIndex() { if ($this->request->isAjax) { return $this->success( 'ok', $this->service->getPageList( array_merge( $this->request->post(), $this->request->get() ) ) ); } return $this->render($this->action->id); } }