getPage(); $keywords = $this->request->get('keywords'); $result = HealthyOrderServer::getOrderList($page, $limit,$keywords); return json_success($result, '成功'); } /** * Notes:订单详情 * @return \support\Response * User: YCP * Date: 2022/11/8 */ public function getOrderInfo() { $order_id = $this->request->get('order_id'); if(!$order_id){ throw new \Exception('订单ID不能为空'); } $result = HealthyOrderServer::orderInfo($order_id); if ($result){ return json_success($result, '获取成功'); }else{ throw new \Exception('获取失败!'); } } /** * Notes:发货 * @return \support\Response * User: YCP * Date: 2022/11/9 */ public function orderDelivery() { $params = $this->request->post(); $admin_id = $this->request->admin_id; $result = HealthyOrderServer::orderDelivery($params,$admin_id); if ($result){ return json_success($result, '获取成功'); }else{ throw new \Exception('获取失败!'); } } /** * Notes:修改订单支付状态 * @return \support\Response * User: YCP * Date: 2022/11/28 */ public function updatePayStatus() { $order_id = $this->request->post('order_id'); $order_pay_status = $this->request->post('order_pay_status'); if(!$order_id){ throw new \Exception('订单ID不能为空'); } $result = HealthyOrderServer::updatePayStatus($order_id, $order_pay_status); return json_success($result, '修改成功'); } }