service = new OrderService( ['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('index'); } /** * 分账信息 * * @return void */ public function actionSplitBill() { if ($this->request->isAjax) { return $this->success( 'ok', $this->service->getSplitBill( $this->request->get('id') ) ); } } }