feat:续费记录增加后台续费标注

This commit is contained in:
yangqingyuan
2024-09-15 19:48:45 +08:00
parent cd8588a021
commit 2d3e76a615
3 changed files with 11 additions and 3 deletions

View File

@@ -53,6 +53,10 @@
<template v-if="column.key === 'createTime'">
{{ record.createTime }}
</template>
<template v-if="column.key === 'isAdminRenew'">
<span v-if="record.isAdminRenew === 1">后台续费</span>
<span v-else>-</span>
</template>
</template>
</ele-pro-table>
</a-card>
@@ -146,9 +150,9 @@
key: 'payPrice'
},
{
title: '是否付款',
dataIndex: 'payStatus',
key: 'payStatus'
title: '续费情况',
dataIndex: 'isAdminRenew',
key: 'isAdminRenew'
},
{
title: '创建时间',