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; rentOrderNo?:string;
currPeriods?:number;//当前期数 currPeriods?:number;//当前期数
isAdminRenew?:number;//是否管理员学费
} }

View File

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

View File

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