Browse Source

Merge branch 'dev/v2.4.26.2' of jianyu/qmx_page_admin into hotfix/v2.4.26.2

汤世哲 1 năm trước cách đây
mục cha
commit
9107be0d21
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/views/order/components/setOrderInfo.vue

+ 2 - 2
src/views/order/components/setOrderInfo.vue

@@ -227,10 +227,10 @@ export default {
       let total = 0
       this.dynamicValidateForm.domains.forEach(item => {
         if (item.price) {
-          total += parseFloat(item.price)
+          total += parseFloat(item.price * 100000)
         }
       })
-      return total
+      return total / 100000
     }
   },
   methods: {