|
@@ -124,7 +124,7 @@
|
|
|
<template v-if="field.prop==='expand'">
|
|
<template v-if="field.prop==='expand'">
|
|
|
<el-row class="pd10">
|
|
<el-row class="pd10">
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
- <h4>关联订单明细</h4>
|
|
|
|
|
|
|
+ <h4 class="pd5">关联订单明细</h4>
|
|
|
<el-table :data="row.orderDetails" width="400" border>
|
|
<el-table :data="row.orderDetails" width="400" border>
|
|
|
<el-table-column label="充电订单" prop="startChargeSeq"/>
|
|
<el-table-column label="充电订单" prop="startChargeSeq"/>
|
|
|
<el-table-column label="总金额(元)" prop="totalMoney">
|
|
<el-table-column label="总金额(元)" prop="totalMoney">
|
|
@@ -156,6 +156,9 @@
|
|
|
<template v-else-if="field.prop==='totalMoney'">
|
|
<template v-else-if="field.prop==='totalMoney'">
|
|
|
{{ u.fmt.fmtMoney(row[field.prop]) }}
|
|
{{ u.fmt.fmtMoney(row[field.prop]) }}
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+ <template v-else-if="field.prop==='invoiceAmount'">
|
|
|
|
|
+ {{ u.fmt.fmtMoney(row[field.prop]) }}
|
|
|
|
|
+ </template>
|
|
|
<template v-else-if="field.prop==='elecMoney'">
|
|
<template v-else-if="field.prop==='elecMoney'">
|
|
|
{{ u.fmt.fmtMoney(row[field.prop]) }}
|
|
{{ u.fmt.fmtMoney(row[field.prop]) }}
|
|
|
</template>
|
|
</template>
|
|
@@ -221,7 +224,7 @@ const state = reactive({
|
|
|
{type: 'expand', prop: 'expand', width: 30, fixed: 'left'},
|
|
{type: 'expand', prop: 'expand', width: 30, fixed: 'left'},
|
|
|
{label: '申请号', prop: 'applyId', align: 'center', fixed: 'left', width: 220},
|
|
{label: '申请号', prop: 'applyId', align: 'center', fixed: 'left', width: 220},
|
|
|
{label: '发票状态', prop: 'status', align: 'center', fixed: 'left', width: 100},
|
|
{label: '发票状态', prop: 'status', align: 'center', fixed: 'left', width: 100},
|
|
|
- {label: '发票金额(分)', prop: 'invoiceAmount', resizable: true, width: 150},
|
|
|
|
|
|
|
+ {label: '发票金额(元)', prop: 'invoiceAmount', resizable: true, width: 150},
|
|
|
{label: '订单总金额(元)', prop: 'totalMoney', resizable: true, width: 150},
|
|
{label: '订单总金额(元)', prop: 'totalMoney', resizable: true, width: 150},
|
|
|
{label: '总服务费(元)', prop: 'serviceMoney', resizable: true, width: 140},
|
|
{label: '总服务费(元)', prop: 'serviceMoney', resizable: true, width: 140},
|
|
|
{label: '开票人', prop: 'biller', resizable: true, width: 130},
|
|
{label: '开票人', prop: 'biller', resizable: true, width: 130},
|