运营商vip金额展示保留两位小数 明细弹框更换字段

This commit is contained in:
BOOL\25024
2025-01-20 15:35:36 +08:00
parent 58a0d3947c
commit 051d92fcc1

View File

@@ -113,9 +113,21 @@
</template>
</el-table-column>
<el-table-column label="手机号" align="center" prop="mobileNumber" />
<el-table-column label="本金余额" align="center" prop="principalBalance" />
<el-table-column label="赠送余额" align="center" prop="giftBalance" />
<el-table-column label="总余额" align="center" prop="totalAccountAmount" />
<el-table-column label="本金余额" align="center" prop="principalBalance">
<template slot-scope="scope">
<span>{{ scope.row.principalBalance.toFixed(2) }}</span>
</template>
</el-table-column>
<el-table-column label="赠送余额" align="center" prop="giftBalance">
<template slot-scope="scope">
<span>{{ scope.row.giftBalance.toFixed(2) }}</span>
</template>
</el-table-column>
<el-table-column label="总余额" align="center" prop="totalAccountAmount">
<template slot-scope="scope">
<span>{{ scope.row.totalAccountAmount.toFixed(2) }}</span>
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
@@ -280,10 +292,10 @@
totalConsumption
}}</el-form-item>
<el-form-item label="累计充值金额:" style="padding-left: 50px">{{
totalRechargeAmount
accumulatedRechargeAmount
}}</el-form-item>
<el-form-item label="累计消费金额:" style="padding-left: 50px">{{
totalConsumption
accumulatedConsumptionAmount
}}</el-form-item>
</el-col>
</el-form>
@@ -589,7 +601,7 @@ export default {
},
/** 导出按钮操作 */
handleExport() {
// console.log("memberId", this.detailParameters.memberId);
// console.log("memberId", this.detailParameters.memberId);
const params = {
...this.queryParams,
memberId: this.detailParameters.memberId,