mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
运营商vip金额展示保留两位小数 明细弹框更换字段
This commit is contained in:
@@ -113,9 +113,21 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="手机号" align="center" prop="mobileNumber" />
|
<el-table-column label="手机号" align="center" prop="mobileNumber" />
|
||||||
<el-table-column label="本金余额" align="center" prop="principalBalance" />
|
<el-table-column label="本金余额" align="center" prop="principalBalance">
|
||||||
<el-table-column label="赠送余额" align="center" prop="giftBalance" />
|
<template slot-scope="scope">
|
||||||
<el-table-column label="总余额" align="center" prop="totalAccountAmount" />
|
<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" prop="remark" />
|
||||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
@@ -280,10 +292,10 @@
|
|||||||
totalConsumption
|
totalConsumption
|
||||||
}}</el-form-item>
|
}}</el-form-item>
|
||||||
<el-form-item label="累计充值金额:" style="padding-left: 50px">{{
|
<el-form-item label="累计充值金额:" style="padding-left: 50px">{{
|
||||||
totalRechargeAmount
|
accumulatedRechargeAmount
|
||||||
}}</el-form-item>
|
}}</el-form-item>
|
||||||
<el-form-item label="累计消费金额:" style="padding-left: 50px">{{
|
<el-form-item label="累计消费金额:" style="padding-left: 50px">{{
|
||||||
totalConsumption
|
accumulatedConsumptionAmount
|
||||||
}}</el-form-item>
|
}}</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-form>
|
</el-form>
|
||||||
@@ -589,7 +601,7 @@ export default {
|
|||||||
},
|
},
|
||||||
/** 导出按钮操作 */
|
/** 导出按钮操作 */
|
||||||
handleExport() {
|
handleExport() {
|
||||||
// console.log("memberId", this.detailParameters.memberId);
|
// console.log("memberId", this.detailParameters.memberId);
|
||||||
const params = {
|
const params = {
|
||||||
...this.queryParams,
|
...this.queryParams,
|
||||||
memberId: this.detailParameters.memberId,
|
memberId: this.detailParameters.memberId,
|
||||||
|
|||||||
Reference in New Issue
Block a user