|
@@ -101,6 +101,9 @@
|
|
|
<template v-if="['rechargeAmount','amount','refundAmount','balance','rechargeBalance','grantsBalance','frozenAmount','amountReceivable','amountReceived','discountAmount','refundDiscountAmount'].includes(field.prop)">
|
|
<template v-if="['rechargeAmount','amount','refundAmount','balance','rechargeBalance','grantsBalance','frozenAmount','amountReceivable','amountReceived','discountAmount','refundDiscountAmount'].includes(field.prop)">
|
|
|
{{ u.fmt.fmtMoney(row[field.prop]) }}
|
|
{{ u.fmt.fmtMoney(row[field.prop]) }}
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+ <template v-else-if="'followOfficialAccount'===field.prop">
|
|
|
|
|
+ <ext-d-label type="User.followOfficialAccount" v-model="row[field.prop]"/>
|
|
|
|
|
+ </template>
|
|
|
<template v-else-if="'status'===field.prop">
|
|
<template v-else-if="'status'===field.prop">
|
|
|
<ext-d-label type="User.status" v-model="row[field.prop]"/>
|
|
<ext-d-label type="User.status" v-model="row[field.prop]"/>
|
|
|
</template>
|
|
</template>
|
|
@@ -177,6 +180,7 @@ const state = reactive({
|
|
|
{label: '赠金余额', width: 90, prop: 'grantsBalance', resizable: true, fixed: 'left'},
|
|
{label: '赠金余额', width: 90, prop: 'grantsBalance', resizable: true, fixed: 'left'},
|
|
|
{label: '冻结余额', width: 90, prop: 'frozenAmount', resizable: true, fixed: 'left'},
|
|
{label: '冻结余额', width: 90, prop: 'frozenAmount', resizable: true, fixed: 'left'},
|
|
|
{label: '状态', width: 80, prop: 'status', align: 'center'},
|
|
{label: '状态', width: 80, prop: 'status', align: 'center'},
|
|
|
|
|
+ {label: '关注公众号', width: 110, prop: 'followOfficialAccount', align: 'center'},
|
|
|
{label: '注册时间', width: 160, prop: 'registerTime', resizable: true},
|
|
{label: '注册时间', width: 160, prop: 'registerTime', resizable: true},
|
|
|
{label: '充值次数', width: 90, prop: 'rechargeTimes', resizable: true},
|
|
{label: '充值次数', width: 90, prop: 'rechargeTimes', resizable: true},
|
|
|
{label: '充值金额', width: 90, prop: 'rechargeAmount', resizable: true},
|
|
{label: '充值金额', width: 90, prop: 'rechargeAmount', resizable: true},
|