Browse Source

一些功能

Kirin 4 years ago
parent
commit
62685701fd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/models/store/StoreExchange.php

+ 1 - 1
app/models/store/StoreExchange.php

@@ -209,7 +209,7 @@ class StoreExchange extends BaseModel
         $carts = StoreOrderCartInfo::where('oid', $order['id'])->where('cart_id', 'in', $order['cart_id'])
         $carts = StoreOrderCartInfo::where('oid', $order['id'])->where('cart_id', 'in', $order['cart_id'])
             ->select();
             ->select();
         foreach ($carts as $cart) {
         foreach ($carts as $cart) {
-            $info = json_decode($cart['cart_info'], true);
+            $info = $cart['cart_info'];
             var_dump($info);
             var_dump($info);
         }
         }
     }
     }