|
|
@@ -222,8 +222,8 @@ export default {
|
|
|
let feeRate, fee
|
|
|
if (
|
|
|
this.balance.rechargeAccumulation &&
|
|
|
- this.balance.transactionVolume &&
|
|
|
- this.balance.transactionVolume / this.balance.rechargeAccumulation >= this.lowFeeFactor
|
|
|
+ this.balance.credits &&
|
|
|
+ this.balance.credits / this.balance.rechargeAccumulation >= this.lowFeeFactor
|
|
|
) {
|
|
|
feeRate = this.withdrawFeeLowRate
|
|
|
fee = this.withdrawFeeLowRate * amount
|
|
|
@@ -232,6 +232,7 @@ export default {
|
|
|
fee = this.withdrawFeeRate * amount
|
|
|
}
|
|
|
return {
|
|
|
+ feeRate,
|
|
|
fee: fee.toFixed(2),
|
|
|
realReceipt: amount.toFixed(2)
|
|
|
}
|