|
|
@@ -88,7 +88,7 @@
|
|
|
:show-overflow-tooltip="!field.fixed&&field.width>150"
|
|
|
>
|
|
|
<template #default="{row}">
|
|
|
- <template v-if="['rechargeAmount','totalMoney','refundAmount','balance','payAmount','discountAmount','refundDiscountAmount'].includes(field.prop)">
|
|
|
+ <template v-if="['rechargeAmount','totalMoney','refundAmount','balance','frozenAmount','payAmount','discountAmount','refundDiscountAmount'].includes(field.prop)">
|
|
|
{{ u.fmt.fmtMoney(row[field.prop]) }}
|
|
|
</template>
|
|
|
<template v-else-if="'status'===field.prop">
|
|
|
@@ -155,6 +155,7 @@ const state = reactive({
|
|
|
// {label: '用户名',width: 150, prop: 'userName', resizable: true, fixed: 'left'},
|
|
|
{label: '手机号', width: 120, prop: 'mobilePhone', resizable: true, fixed: 'left'},
|
|
|
{label: '余额', width: 80, prop: 'balance', resizable: true, fixed: 'left'},
|
|
|
+ {label: '冻结余额', width: 80, prop: 'frozenAmount', resizable: true, fixed: 'left'},
|
|
|
{label: '状态', width: 80, prop: 'status', align: 'center'},
|
|
|
{label: '注册时间', width: 160, prop: 'registerTime', resizable: true},
|
|
|
{label: '充值次数', width: 90, prop: 'rechargeTimes', resizable: true},
|