This commit is contained in:
weicw
2023-08-11 14:30:22 +08:00
parent a431586d21
commit fa23f190a5
15 changed files with 1310 additions and 55 deletions

View File

@@ -100,6 +100,18 @@
>已退租</a-tag
>
</div>
<div class="ele-text-placeholder" v-if="record.orderSource != 10">
分期状态
<a-tag v-if="record.fenqiStatus == 1" color="success"
>已完成</a-tag
>
<a-tag v-else-if="record.expirationDay < 0" color="error"
>逾期{{ record.expirationDay }}</a-tag
>
<a-tag v-else-if="record.expirationDay >= 0" color="warning"
>剩余{{ record.expirationDay }}</a-tag
>
</div>
</template>
<template v-if="column.key === 'comments'">
<FormOutlined
@@ -271,6 +283,11 @@
filters: orderSource,
filterMultiple: false
},
{
title: '到期时间',
dataIndex: 'expirationTime',
key: 'expirationTime'
},
{
title: '买家',
dataIndex: 'nickname',