|
@@ -590,7 +590,7 @@ export default {
|
|
// 门槛统计
|
|
// 门槛统计
|
|
const isYuan = item.gateRuleUnit == 'YUAN'
|
|
const isYuan = item.gateRuleUnit == 'YUAN'
|
|
const gateUnit = isYuan ? '元' : '个' // 单位
|
|
const gateUnit = isYuan ? '元' : '个' // 单位
|
|
- const gateSelected = isYuan ? item.gateTotalAmount : item.gateQty // 已选
|
|
|
|
|
|
+ const gateSelected = isYuan ? item.gateAmount : item.gateQty // 已选
|
|
const gateTotal = isYuan ? item.gateBorrowAmount : item.gateBorrowQty // 累计
|
|
const gateTotal = isYuan ? item.gateBorrowAmount : item.gateBorrowQty // 累计
|
|
const geteBalance = item.gateShortfallValue // 差额
|
|
const geteBalance = item.gateShortfallValue // 差额
|
|
const quotaUnit = item.quotaRuleUnit == 'YUAN' ? '元' : '个' // 配额单位
|
|
const quotaUnit = item.quotaRuleUnit == 'YUAN' ? '元' : '个' // 配额单位
|