From 45cfecee8ff03d48dafc80c1c4b031720ae53303 Mon Sep 17 00:00:00 2001 From: liu <1873441552@qq.com> Date: Fri, 15 Mar 2024 15:26:59 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BA=BF=E4=B8=8A=E8=B0=83=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/store/order/StoreCart.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/controller/api/store/order/StoreCart.php b/app/controller/api/store/order/StoreCart.php index b15fa47c..8151f24a 100644 --- a/app/controller/api/store/order/StoreCart.php +++ b/app/controller/api/store/order/StoreCart.php @@ -174,6 +174,8 @@ class StoreCart extends BaseController public function cartCount() { $saleType = $this->request->get('sale_type', 1); + dump($this->request->userInfo()); + halt($this->request->uid()); return app('json')->success($this->repository->getCartCount($this->request->uid()), intval($saleType)); }