ソースを参照

Merge branch 'v20' of http://192.168.31.240:3000/MTP2.0_New/MTP20_WEB_GLOBAL into v20

li.shaoyi 1 年間 前
コミット
06e1b97c98

+ 1 - 1
src/packages/mobile/views/order/position/components/pricing/detail2/components/delivery/Index.vue

@@ -122,7 +122,7 @@ const deposit = computed(() => {
 // 比率:订单金额*配置值
 const fee = computed(() => {
     const { tradefees = [], agreeunit = 0 } = quote.value ?? {}
-    const { FeeAlgorithm = 1, ExchangeValue = 1.0 } = tradefees.find((e) => e.FeeID === 105) ?? {}
+    const { FeeAlgorithm = 1, ExchangeValue = 0.0 } = tradefees.find((e) => e.FeeID === 105) ?? {}
     // 比例
     if (FeeAlgorithm === 1) {
         return enableqty.value * agreeunit * ExchangeValue