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