Commit 9b887e93 authored by 沈翠玲's avatar 沈翠玲

案件回收和全部案件增加委案金额和借款人年龄的搜索条件

parent 676fa7d5
...@@ -375,6 +375,45 @@ ...@@ -375,6 +375,45 @@
width: 100, width: 100,
search: { el: 'select', props: { clearable: true, filterable: true }, key: 'manageOrgId', labelWidth: 105 }, search: { el: 'select', props: { clearable: true, filterable: true }, key: 'manageOrgId', labelWidth: 105 },
}, },
{
field: 'commissionAmount',
title: '委案金额',
sortable: true,
showOverflow: 'tooltip',
width: 120,
search: {
render: ({ searchParam }) => {
return (
<div class="flex">
<el-input vModel_trim={searchParam.commissionAmountBegin} placeholder="最小值" />
<span class="mr-1 ml-1">-</span>
<el-input vModel_trim={searchParam.commissionAmountEnd} placeholder="最大值" />
</div>
);
},
props: { clearable: true },
labelWidth: 105,
},
},
{
field: 'borrower.age',
title: '借款人年龄',
showOverflow: 'tooltip',
width: 120,
search: {
render: ({ searchParam }) => {
return (
<div class="flex">
<el-input vModel_trim={searchParam.ageBegin} placeholder="最小值" />
<span class="mr-1 ml-1">-</span>
<el-input vModel_trim={searchParam.ageEnd} placeholder="最大值" />
</div>
);
},
props: { clearable: true },
labelWidth: 105,
},
},
{ {
field: 'batchCode', field: 'batchCode',
title: '导入批次', title: '导入批次',
......
...@@ -458,6 +458,25 @@ ...@@ -458,6 +458,25 @@
labelWidth: 90, labelWidth: 90,
}, },
}, },
{
field: 'borrower.age',
title: '借款人年龄',
showOverflow: 'tooltip',
width: 120,
search: {
render: ({ searchParam }) => {
return (
<div class="flex">
<el-input vModel_trim={searchParam.ageBegin} placeholder="最小值" />
<span class="mr-1 ml-1">-</span>
<el-input vModel_trim={searchParam.ageEnd} placeholder="最大值" />
</div>
);
},
props: { clearable: true },
labelWidth: 90,
},
},
{ {
field: 'maxStagesNum', field: 'maxStagesNum',
title: '分期最大期数', title: '分期最大期数',
......
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