|
|
@@ -94,7 +94,7 @@
|
|
|
<template v-else-if="field.prop==='type'">
|
|
|
<ext-d-label type="Object.type" :model-value="row[field.prop]"></ext-d-label>
|
|
|
</template>
|
|
|
- <template v-else-if="['balance','frozenAmount','frozenAmountSplit','amount'].includes(field.prop)">
|
|
|
+ <template v-else-if="['balance','frozenAmount','unusedAmount','frozenAmountSplit','amount'].includes(field.prop)">
|
|
|
{{ u.fmt.fmtMoney(row[field.prop]) }}
|
|
|
</template>
|
|
|
<template v-else-if="field.prop==='idleRemainTime'||field.prop==='operationRemainTime'">
|
|
|
@@ -157,7 +157,8 @@ const state = reactive({
|
|
|
// {label: '站点ID', width: 100,prop: 'stationId', query: true, type: 'text', resizable: true},
|
|
|
{label: '站点名称', width: 200, prop: 'stationName', query: true, type: 'text', resizable: true},
|
|
|
{label: '可提现金额(元)', width: 180, prop: 'balance', query: true, type: '', resizable: true},
|
|
|
- {label: '充值未消费金额(元)', width: 180, prop: 'frozenAmount', query: true, type: '', resizable: true},
|
|
|
+ {label: '冻结金额(元)', width: 180, prop: 'frozenAmount', query: true, type: '', resizable: true},
|
|
|
+ {label: '充值未消费金额(元)', width: 180, prop: 'unusedAmount', query: true, type: '', resizable: true},
|
|
|
{label: '未消费可分账金额(元)', width: 200, prop: 'frozenAmountSplit', query: true, type: '', resizable: true},
|
|
|
{label: '创建时间', width: 180, prop: 'createTime', query: true, sortable: 'custom', type: 'datetime', resizable: true, conf: {format: (val: any) => u.fmt.fmtDate(val)}},
|
|
|
{label: '更新时间', width: 180, prop: 'updateTime', query: true, sortable: 'custom', type: 'datetime', resizable: true, conf: {format: (val: any) => u.fmt.fmtDate(val)}},
|