Browse Source

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

peter 5 months ago
parent
commit
76f41223d9
1 changed files with 1 additions and 1 deletions
  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