feat(shopOrder): 更新订单列表显示字段
- 添加发货时间和退款时间显示 - 注释掉结算状态标签显示 - 将下单时间标题改为创建时间
This commit is contained in:
@@ -120,6 +120,11 @@
|
||||
<a-tag v-if="record.orderStatus === 7" color="pink"
|
||||
>客户端申请退款</a-tag
|
||||
>
|
||||
<!-- 结算状态 -->
|
||||
<!-- <a-tag v-if="record.isSettled === 0">未结算</a-tag>-->
|
||||
<!-- <a-tag v-if="record.isSettled === 1" color="green"-->
|
||||
<!-- >已结算</a-tag-->
|
||||
<!-- >-->
|
||||
</a-space>
|
||||
</div>
|
||||
</template>
|
||||
@@ -164,6 +169,12 @@
|
||||
<a-tooltip title="支付时间">
|
||||
<span class="text-blue-400">{{ record.payTime }}</span>
|
||||
</a-tooltip>
|
||||
<a-tooltip title="发货时间">
|
||||
<span class="text-green-400">{{ record.deliveryTime }}</span>
|
||||
</a-tooltip>
|
||||
<a-tooltip title="退款时间">
|
||||
<span class="text-orange-400">{{ record.refundTime }}</span>
|
||||
</a-tooltip>
|
||||
</div>
|
||||
</template>
|
||||
<template v-if="column.key === 'action'">
|
||||
@@ -401,7 +412,7 @@
|
||||
// align: 'center',
|
||||
// },
|
||||
{
|
||||
title: '下单时间',
|
||||
title: '创建时间',
|
||||
dataIndex: 'createTime',
|
||||
key: 'createTime',
|
||||
width: 180,
|
||||
|
||||
Reference in New Issue
Block a user