累计提现金额 保留后两位
This commit is contained in:
parent
5723fb853a
commit
2dc98838c7
|
|
@ -228,7 +228,7 @@
|
|||
<div class="box_num">
|
||||
<div class="box_color">累计提现金额</div>
|
||||
<div class="text_color">
|
||||
<span>{{ withdrawData.sumMoney }}</span>元
|
||||
<span> {{ formatMoney(withdrawData.sumMoney) }}</span>元
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -705,6 +705,10 @@ export default {
|
|||
};
|
||||
},
|
||||
methods: {
|
||||
formatMoney(value) {
|
||||
if (!value) return '0.00';
|
||||
return Number(value).toFixed(2);
|
||||
},
|
||||
zhuanPanTypeChange() {
|
||||
this.zhuanPanInit();
|
||||
},
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@
|
|||
:page-size="limit"
|
||||
:current-page="page"
|
||||
layout="total,sizes, prev, pager, next,jumper"
|
||||
:total="tableData.total"
|
||||
:total="tableData.totalCount"
|
||||
>
|
||||
</el-pagination>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue