getList($this->postData()); return $this->renderSuccess('', compact('list')); } /** * 激活年卡 */ public function activate() { $orderId = $this->request->post('order_id'); $memberService = new MemberService(); $result = $memberService->activateMember($orderId); if (!$result) { return $this->renderError('激活年卡失败'); } return $this->renderSuccess('年卡激活成功'); } }