wesmiler 14 часов назад
Родитель
Сommit
5c3e36c7c4
1 измененных файлов с 0 добавлено и 3 удалено
  1. 0 3
      app/Services/Api/OrderService.php

+ 0 - 3
app/Services/Api/OrderService.php

@@ -262,7 +262,6 @@ class OrderService extends BaseService
             ->select(['id', 'openid','vip_expired', 'member_level', 'status'])
             ->first();
         $userInfo = $userInfo?$userInfo->toArray() : [];
-        var_dump($userInfo);
         $status = isset($userInfo['status']) ? $userInfo['status'] : 0;
         $openid = isset($userInfo['openid']) ? $userInfo['openid'] : 0;
         $vipExpired = isset($userInfo['vip_expired']) ? $userInfo['vip_expired'] : 0;
@@ -293,8 +292,6 @@ class OrderService extends BaseService
             return false;
         }
 
-        var_dump($result);
-
         $orderGoods = isset($result['goods']) ? $result['goods'] : [];
         $goodsTotal = isset($result['goods_total']) ? $result['goods_total'] : 0; // 商品总价
         $orderTotal = isset($result['order_total']) ? $result['order_total'] : 0; // 订单结算金额(折后)