Commit fc67a75a authored by 沈翠玲's avatar 沈翠玲

页面修改

parent f660bc7a
......@@ -25,7 +25,7 @@
<div class="flex">
<div class="w-1/2">
<div id="baseinfo">
<div class="box-title">案人基本信息</div>
<div class="box-title">基本信息</div>
<div class="box-content">
<table>
<tbody>
......@@ -47,6 +47,10 @@
<td class="label">户籍地址</td>
<td colspan="3">{{ detail?.borrower?.address }}</td>
</tr>
<tr>
<td class="label">案件还款状态</td>
<td colspan="3">{{ detail.repayStatus == 'over' ? '已还款' : '待还款' }}</td>
</tr>
</tbody>
<!-- Add more rows as needed -->
</table>
......
......@@ -332,6 +332,17 @@
width: 80,
search: { el: 'input', props: { clearable: true }, labelWidth: 90 },
},
{
field: 'repayStatus',
title: '还款状态',
showOverflow: 'tooltip',
width: 80,
slots: {
default: ({ row }) => {
return <div>{row.repayStatus == 'over' ? '已还款' : '待还款'}</div>;
},
},
},
{
field: 'commission',
showOverflow: 'tooltip',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment