基本配置修改 优化
This commit is contained in:
parent
9476acfedf
commit
37dcf40850
|
|
@ -108,10 +108,10 @@
|
||||||
<span v-else>{{ scope.row.tradeNum }}</span>
|
<span v-else>{{ scope.row.tradeNum }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="交易余额" align="center" prop="realAmount" :show-overflow-tooltip="true" width="120">
|
<el-table-column label="交易余额" align="center" prop="payableAmount" :show-overflow-tooltip="true" width="120">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span v-if="scope.$index === tableListData.length - 1 && showSummary" style="font-weight: bold; color: #409EFF;">{{ (scope.row.realAmount/100).toFixed(2) }}</span>
|
<span v-if="scope.$index === tableListData.length - 1 && showSummary" style="font-weight: bold; color: #409EFF;">{{ (scope.row.payableAmount/100).toFixed(2) }}</span>
|
||||||
<span v-else>{{ (scope.row.realAmount/100).toFixed(2) }}</span>
|
<span v-else>{{ (scope.row.payableAmount/100).toFixed(2) }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="消费地" align="center" prop="areaName" :show-overflow-tooltip="true">
|
<el-table-column label="消费地" align="center" prop="areaName" :show-overflow-tooltip="true">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue