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

@@ -117,6 +117,7 @@ export interface OrderPay {
rentOrderNo?:string;
currPeriods?:number;//当前期数
isAdminRenew?:number;//是否管理员学费
}

View File

@@ -320,6 +320,9 @@
</view>
<view v-else>
<span>第{{ record.currPeriods }}期</span>
<view v-if="record.isAdminRenew === 1">
<span> (后台续费)</span>
</view>
</view>
</template>

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: '创建时间',