feat:续费记录增加后台续费标注
This commit is contained in:
@@ -117,6 +117,7 @@ export interface OrderPay {
|
||||
rentOrderNo?:string;
|
||||
|
||||
currPeriods?:number;//当前期数
|
||||
isAdminRenew?:number;//是否管理员学费
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -320,6 +320,9 @@
|
||||
</view>
|
||||
<view v-else>
|
||||
<span>第{{ record.currPeriods }}期</span>
|
||||
<view v-if="record.isAdminRenew === 1">
|
||||
<span> (后台续费)</span>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
||||
@@ -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: '创建时间',
|
||||
|
||||
Reference in New Issue
Block a user