소스 검색

change: 商品价格数字舍入处理.

peter 5 달 전
부모
커밋
76f41223d9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      components/product/Quote.vue

+ 1 - 1
components/product/Quote.vue

@@ -597,7 +597,7 @@ export default {
   methods: {
     ...mapActions(['getUserInfo']),
     multiplyWithMargin(o, m) {
-      return npDivide(npTimes(o, (100 + parseFloat(m))), 100)
+      return npDivide(Math.round(npTimes(o, (100 + parseFloat(m)))), 100).toFixed(2)
     },
     async getQuote() {
       let margin = 0