diff --git a/app/api/controller/order/OrderController.php b/app/api/controller/order/OrderController.php index 3a126f617..fdfea135d 100644 --- a/app/api/controller/order/OrderController.php +++ b/app/api/controller/order/OrderController.php @@ -121,6 +121,8 @@ class OrderController extends BaseApiController */ public function createOrder() { + return $this->fail('系统维护中,暂停交易。维护时间2024年9月27日-28日'); + $cartId = (array)$this->request->post('cart_id', []); $store_id =$this->request->post('store_id', 0); $pay_type = (int)$this->request->post('pay_type'); diff --git a/app/store/controller/store_order/StoreOrderController.php b/app/store/controller/store_order/StoreOrderController.php index 5d7939187..228780a16 100644 --- a/app/store/controller/store_order/StoreOrderController.php +++ b/app/store/controller/store_order/StoreOrderController.php @@ -159,6 +159,7 @@ class StoreOrderController extends BaseAdminController */ public function createOrder() { + return $this->fail('系统维护中,暂停交易。维护时间2024年9月27日-28日'); $cartId = (array)$this->request->post('cart_id', []); $pay_type = (int)$this->request->post('pay_type'); $addressId = (int)$this->request->post('address_id');