|
@@ -87,14 +87,14 @@
|
|
|
<vxe-column field="buyerMessage" title="买家留言" width="120"></vxe-column>
|
|
|
<vxe-column field="wmsCoId" title="发货仓编号" width="120"></vxe-column>
|
|
|
<vxe-column field="payDate" title="支付时间" width="140"></vxe-column>
|
|
|
- <vxe-column field="freeAmount" title="抵扣金额" width="120"></vxe-column>
|
|
|
- <vxe-column field="payAmount" title="应付+运费" width="120">
|
|
|
+ <vxe-column field="freeAmount" title="抵扣金额" align="right" width="120"></vxe-column>
|
|
|
+ <vxe-column field="payAmount" title="应付+运费" align="right" width="120">
|
|
|
<template #default="{ row }">
|
|
|
<span>{{ row.payAmount }}</span> <br/>
|
|
|
<span style="color: #b9b8b8;">{{ row.freight?row.freight:0 }}</span>
|
|
|
</template>
|
|
|
</vxe-column>
|
|
|
- <vxe-column field="paidAmount" title="实付金额" width="120"></vxe-column>
|
|
|
+ <vxe-column field="paidAmount" title="实付金额" align="right" width="120"></vxe-column>
|
|
|
<vxe-column field="shopBuyerId" title="买家昵称" width="120"></vxe-column>
|
|
|
<vxe-column field="openId" title="平台买家唯一值" width="120"></vxe-column>
|
|
|
<vxe-column field="buyerPaidAmount" title="总买家实付" width="120"></vxe-column>
|
|
@@ -120,7 +120,7 @@
|
|
|
</vxe-column>
|
|
|
<vxe-column field="remark" title="订单备注" width="120"></vxe-column>
|
|
|
<vxe-column field="note" title="线下备注" width="120"></vxe-column>
|
|
|
- <vxe-column title="操作" width="120" fixed="right">
|
|
|
+ <vxe-column title="操作" width="90" fixed="right" align="center">
|
|
|
<template #default="{ row }">
|
|
|
<el-button type="text" size="mini" v-if="showMerge(row)" @click="mergeHandle(row)">合并</el-button>
|
|
|
<el-button type="text" size="mini" v-if="showSplit(row)" @click="splitHandle(row)">拆分</el-button>
|