|
|
@@ -116,9 +116,9 @@
|
|
|
<template #default="{row}">
|
|
|
<template v-if="field.prop==='stationId'">
|
|
|
<div class="station-name-cell">
|
|
|
- <span class="station-name">{{ row.stationName }}</span>
|
|
|
- <span class="station-divider"></span>
|
|
|
<span class="station-id">{{ row.stationId }}</span>
|
|
|
+ <span class="station-divider"></span>
|
|
|
+ <span class="station-name">{{ row.stationName }}</span>
|
|
|
</div>
|
|
|
</template>
|
|
|
<template v-else-if="field.prop==='status'">
|
|
|
@@ -126,7 +126,7 @@
|
|
|
{{ getStatusLabel(row.status) }}
|
|
|
</el-tag>
|
|
|
</template>
|
|
|
- <template v-else-if="['openingPendingBalance','totalRecharge','totalRefund','totalCrossIncome','totalCrossExpend','platformFeeBase','platformFee','settlementAmount','closingPendingBalance'].includes(field.prop)">
|
|
|
+ <template v-else-if="['openingPendingBalance','totalRecharge','totalRefund','totalCrossIncome','totalCrossExpend','platformFeeBase','platformFee','withdrawalFee','settlementAmount','closingPendingBalance'].includes(field.prop)">
|
|
|
{{ u.fmt.fmtMoney(row[field.prop]) }}
|
|
|
</template>
|
|
|
<template v-else-if="['createTime','updateTime'].includes(field.prop)">
|
|
|
@@ -181,6 +181,7 @@ const state = reactive({
|
|
|
{label: '跨店支出(元)', width: 140, prop: 'totalCrossExpend', resizable: true},
|
|
|
{label: '平台费基数(元)', width: 150, prop: 'platformFeeBase', resizable: true},
|
|
|
{label: '平台费(元)', width: 130, prop: 'platformFee', resizable: true},
|
|
|
+ {label: '提现手续费(元)', width: 150, prop: 'withdrawalFee', resizable: true},
|
|
|
{label: '结算金额(元)', width: 150, prop: 'settlementAmount', resizable: true},
|
|
|
{label: '期末余额(元)', width: 150, prop: 'closingPendingBalance', resizable: true},
|
|
|
{label: '状态', width: 100, prop: 'status', resizable: true},
|