From 5dc332ae0a8e92e71bd855e830e53bf41d29114f Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Mon, 17 Jun 2024 15:56:26 +0800 Subject: [PATCH] =?UTF-8?q?feat(StoreOrderController):=20=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E8=8E=B7=E5=8F=96=E6=88=90=E5=8A=9F=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=E7=BB=93=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/store/controller/store_order/StoreOrderController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/store/controller/store_order/StoreOrderController.php b/app/store/controller/store_order/StoreOrderController.php index 206e34efc..692ee5a09 100644 --- a/app/store/controller/store_order/StoreOrderController.php +++ b/app/store/controller/store_order/StoreOrderController.php @@ -429,7 +429,8 @@ class StoreOrderController extends BaseAdminController return $item; }); } - return $this->success('获取成功', $find); + return $this->success('获取成功', $find?->toArray()); + } }