소스 검색

修改问题

tangning 2 년 전
부모
커밋
2322e6e659
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 2
      src/views/work/confirmPriceModal.vue
  2. 2 2
      src/views/work/quoteModel.vue

+ 2 - 2
src/views/work/confirmPriceModal.vue

@@ -184,7 +184,7 @@
             },
           })
         })
-        fileFlow.priceCount = count
+        fileFlow.priceCount = count.toFixed(2)
         priceSchema.map(item =>{
           console.log('priceSchema',item)
           appendSchemaByField(item,'')
@@ -294,7 +294,7 @@
             count = count +fromPrice
           }
         }
-        fileFlow.priceCount = count
+        fileFlow.priceCount = count.toFixed(2)
       }
 
       function clearInfo(val){

+ 2 - 2
src/views/work/quoteModel.vue

@@ -199,7 +199,7 @@
             },
           })
         })
-        fileFlow.priceCount = count
+        fileFlow.priceCount = count.toFixed(2)
         priceSchema.map(item =>{
           console.log('priceSchema',item)
           appendSchemaByField(item,'')
@@ -321,7 +321,7 @@
             count = count +fromPrice
           }
         }
-        fileFlow.priceCount = count
+        fileFlow.priceCount = count.toFixed(2)
       }
 
       function clearInfo(val){