lilei 3 weeks ago
parent
commit
8500062121

+ 1 - 1
src/views/salesManagement/salesQueryNew/comps/activeStatisticsList.vue

@@ -589,7 +589,7 @@ export default {
         const gateSelected = isYuan ? item.gateTotalAmount : item.gateQty // 已选
         const gateTotal = isYuan ? item.gateBorrowAmount : item.gateBorrowQty // 累计
         const gateQuota = isYuan ? item.gateQuotaAmount : item.gateQuotaQty // 配额
-        const unUseGateQuota = isYuan ? Number(item.unUseAmount) : item.unUseAmount // 未用配额
+        const unUseGateQuota = isYuan ? Number(item.unUseAmount).toFixed(2) : item.unUseAmount // 未用配额
         const geteBalance = item.gateShortfallValue // 差额
         // 特价产品
         const isYuan2 = item.gateRuleUnit == 'YUAN'