累计提现金额 保留后两位
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user