|
@@ -593,7 +593,7 @@ export default {
|
|
|
const gateUnit = isYuan ? '元' : '个' // 单位
|
|
|
const gateSelected = isYuan ? (item.gateAmount || item.gateAmount == 0 ? Number(item.gateAmount).toFixed(2) : undefined) : item.gateQty // 已选
|
|
|
const gateTotal = isYuan ? (item.gateBorrowAmount || item.gateBorrowAmount == 0 ? Number(item.gateBorrowAmount).toFixed(2) : undefined) : item.gateBorrowQty // 累计
|
|
|
- const geteBalance = item.gateShortfallValue // 差额
|
|
|
+ const geteBalance = item.gateShortfallValue || item.gateShortfallValue == 0 ? item.gateShortfallValue : undefined // 差额
|
|
|
const quotaUnit = item.quotaRuleUnit == 'YUAN' ? '元' : '个' // 配额单位
|
|
|
const gateQuota = item.gateQuotaAmount || item.gateQuotaAmount == 0 ? Number(item.gateQuotaAmount).toFixed(2) : undefined // 配额
|
|
|
const unUseGateQuota = item.unUseAmount || item.unUseAmount == 0 ? Number(item.unUseAmount).toFixed(2) : undefined // 未用配额
|