소스 검색

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

汤世哲 1 년 전
부모
커밋
9107be0d21
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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: {