feat:统计日期修改显示,支付改成支付宝,续费增加是否支付列

This commit is contained in:
yangqingyuan
2024-08-22 20:28:06 +08:00
parent 2f2f6c48a9
commit b6df68f43c
3 changed files with 14 additions and 3 deletions

View File

@@ -38,6 +38,11 @@
{{ record.merchantName }}
</template>
<template v-if="column.key === 'payStatus'">
<span v-if="record.payStatus === 20" color="green">已付</span>
<span v-if="record.payStatus === 10" color="red">未付</span>
</template>
<template v-if="column.key === 'orderSource'">
<span v-if="record.orderSource === 10" color="green"
>普通订单</span
@@ -134,6 +139,11 @@
dataIndex: 'payPrice',
key: 'payPrice'
},
{
title: '是否付款',
dataIndex: 'payStatus',
key: 'payStatus'
},
{
title: '创建时间',
dataIndex: 'createTime',