gjy 3 년 전
부모
커밋
dbfbe0e426
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/views/warehouse/warehouseManagementPerfectDelivery.vue

+ 2 - 2
src/views/warehouse/warehouseManagementPerfectDelivery.vue

@@ -964,14 +964,14 @@ export default {
       if (this.dataList.grossWeight && this.dataList.tare) {
         this.dataList.netWeight = Number(
           this.dataList.grossWeight - this.dataList.tare
-        )
+        ).toFixed(2)
       }
     },
     grossWeightchange(e) {
       if (this.dataList.grossWeight && this.dataList.tare) {
         this.dataList.netWeight = Number(
           this.dataList.grossWeight - this.dataList.tare
-        )
+        ).toFixed(2)
       }
     },
     selectgoodsName(e) {