chuweiqiang 1 年之前
父節點
當前提交
254c4c27f1
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      application/api/controller/Order.php

+ 2 - 2
application/api/controller/Order.php

@@ -62,7 +62,7 @@ class Order extends Api
                         'order_id' => $OrderModel->id,
                         'goods_type' => $data['type'],
                         'goods_id' => $v,
-                        'price' => (int)$price[0],
+                        'price' => round($price[0],2)
                     ];
                     $OrderGoods = new OrderGoods();
                     $OrderGoods->save($arr);
@@ -72,7 +72,7 @@ class Order extends Api
                         'order_id' => $OrderModel->id,
                         'goods_type' => $data['type'],
                         'goods_id' => $v,
-                        'price' => (int)$price[0],
+                        'price' => round($price[0],2)
                     ];
                     $OrderGoods = new OrderGoods();
                     $OrderGoods->save($arr);