Commit 1e815425 by caoyanzhi

修复字段取值

parent 02258dbd
......@@ -225,6 +225,22 @@
<template v-if="item.code == 'lastCost'">
{{ scope.row.lastCost }}
</template>
<!-- 最高单笔(应收) -->
<template v-if="item.code === 'highCost'">
<span>{{scope.row.highCost}}</span>
</template>
<!-- 消费总额(实付) -->
<template v-if="item.code === 'costFeePaid'">
<span>{{scope.row.costFeePaid}}</span>
</template>
<!-- 最近消费(实付) -->
<template v-if="item.code === 'lastCostPaid'">
<span>{{scope.row.lastCostPaid}}</span>
</template>
<!-- 最高单笔(实付) -->
<template v-if="item.code === 'highCostPaid'">
<span>{{scope.row.highCostPaid}}</span>
</template>
</template>
</el-table-column>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment