Przeglądaj źródła

fix: 运费试算邮编

lyc 11 godzin temu
rodzic
commit
4a1a53cd70
1 zmienionych plików z 9 dodań i 1 usunięć
  1. 9 1
      src/api/order.js

+ 9 - 1
src/api/order.js

@@ -114,7 +114,15 @@ export function NewCalculatorAll(data) {
   return request({
     url: '/finance/ComputeAllProducts',
     method: 'get',
-    params: { coutryCode: data.CountryCode, weight: data.Weight, length: data.L, width: data.W, height: data.H, CustomerId: data.CustomerId }
+    params: {
+      coutryCode: data.CountryCode,
+      weight: data.Weight,
+      length: data.L,
+      width: data.W,
+      height: data.H,
+      CustomerId: data.CustomerId,
+      ZipCode: data.ZipCode,
+    }
   })
 }