Browse Source

预装箱单新增总件数保留整数

jbb 2 years ago
parent
commit
254a98a2ed
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/advance-packingList/addAdpackingDrawer.vue

+ 1 - 1
src/views/advance-packingList/addAdpackingDrawer.vue

@@ -884,7 +884,7 @@ export default {
       headData.totalGrossWeight = totalGrossWeight;
       headData.totalVolume = totalVolume.toFixed(3);
       headData.totalPrice = totalPrice.toFixed(2); 
-      headData.total = total
+      headData.total = total.toFixed(2)
       this.addAdpacking = headData;
     },
   },