优化:文创豆提现申请 - 实际到账金额保留两位小数
This commit is contained in:
parent
971c6cbf5c
commit
b39762b574
|
|
@ -21,7 +21,7 @@
|
|||
<div class="confirm-transfer-popup">
|
||||
<div class="confirm-transfer-popup-li">提现数量:{{ withdrawal_number }}</div>
|
||||
<div class="confirm-transfer-popup-li" v-if="commissionRate > 0">手续费:{{ getCommission }}</div>
|
||||
<div class="confirm-transfer-popup-li">实际到账:{{ withdrawal_number - getCommission }}</div>
|
||||
<div class="confirm-transfer-popup-li">实际到账:{{ (withdrawal_number - getCommission).toFixed(2) }}</div>
|
||||
<div class="confirm-transfer-popup-warn">您是否确定提现?</div>
|
||||
</div>
|
||||
</van-dialog>
|
||||
|
|
@ -92,7 +92,7 @@ export default {
|
|||
if(_this.fun.getTyep() != 1) return false;
|
||||
// 微信端 判断是否分享
|
||||
if(!_this.isShare) {
|
||||
// this.$dialog.alert({message: "请点击右上角微信分享"});
|
||||
_this.$dialog.alert({message: "请点击右上角微信分享"});
|
||||
_this.fun.wxShare("", {mid: _this.fun.getKeyByMid()}, {},
|
||||
data => {},
|
||||
success => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue