feat:订单管理-订单金额改成交费总数

This commit is contained in:
yangqingyuan
2024-08-11 00:20:19 +08:00
parent a2ddc3c88f
commit fb3125c4cf
3 changed files with 11 additions and 8 deletions

View File

@@ -36,14 +36,14 @@
</span>
</div>
</template>
<template v-if="column.key === 'totalPrice'">
<template v-if="column.key === 'totalPayPrice'">
<p>
<span class="ele-text-warning price-edit">
{{ record.totalPrice }}
{{ record.totalPayPrice }}
</span>
<form-outlined
v-if="record.payStatus === 10"
@click="onEdit('totalPrice', record.totalPrice, record)"
@click="onEdit('totalPayPrice', record.totalPrice, record)"
/></p>
<p class="ele-text-placeholder"
>(含运费{{ record.expressPrice }})</p
@@ -323,8 +323,8 @@
},
{
title: '订单金额(元)',
dataIndex: 'totalPrice',
key: 'totalPrice',
dataIndex: 'totalPayPrice',
key: 'totalPayPrice',
ellipsis: true
},
{