request->isAjax()) { $get = $this->request->get(); $get['shop_id'] = $this->shop_id; return JsonServer::success('', OrderRenewLogic::lists($get)); } return view(''); } public function renewLists() { if ($this->request->isAjax()) { $get = $this->request->get(); $get['shop_id'] = $this->shop_id; return JsonServer::success('', OrderRenewLogic::renewLists($get)); } return view(''); } public function renewLog() { if ($this->request->isAjax()) { $get = $this->request->get(); $get['shop_id'] = $this->shop_id; $get['type_id'] = 1; return JsonServer::success('', OrderRenewLogic::renewLog($get)); } return view(''); } public function renewMonthLog() { if ($this->request->isAjax()) { $get = $this->request->get(); $get['shop_id'] = $this->shop_id; $get['type_id'] = 2; return JsonServer::success('', OrderRenewLogic::renewLog($get)); } return view(''); } public function buy() { $get = $this->request->get(); $get['shop_id'] = $this->shop_id; $id = $get['id'] ?? 0; $data = OrderRenewLogic::buy($id); return view('', ['detail' => $data]); } public function add() { if ($this->request->isPost()) { $post = $this->request->post(); $post['shop_id'] = $this->shop_id; $data = OrderRenewLogic::add($post); if (!$data) { return JsonServer::error(OrderRenewLogic::getError()); } return JsonServer::success('', $data); } return JsonServer::error('请求方式错误'); } public function cancel() { if ($this->request->isPost()) { $post = $this->request->post(); $post['shop_id'] = $this->shop_id; $data = OrderRenewLogic::cancel($post); if (!$data) { return JsonServer::error(OrderRenewLogic::getError()); } return JsonServer::success('操作成功'); } return JsonServer::error('请求方式错误'); } public function payPage() { $get = $this->request->get(); $get['shop_id'] = $this->shop_id; $data = OrderRenewLogic::payPage($get); return view('', ['detail' => $data]); } public function payWay() { if ($this->request->isPost()) { $post = $this->request->post(); $post['shop_id'] = $this->shop_id; $data = OrderRenewLogic::payWay($post); if (!$data) { return JsonServer::error(OrderRenewLogic::getError()); } return JsonServer::success('', ['page' => $data]); } return JsonServer::error('请求方式错误'); } }