Commit 4653e425 authored by 沈翠玲's avatar 沈翠玲

优化

parent ce2cc2ea
...@@ -100,11 +100,21 @@ ...@@ -100,11 +100,21 @@
field: 'caseId', field: 'caseId',
title: '案件ID', title: '案件ID',
search: { el: 'input' }, search: { el: 'input' },
slots: {
default: ({ row }) => {
return <>{row.loans.map((v) => v.caseId).join(',')}</>;
},
},
width: 80, width: 80,
}, },
{ {
field: 'loanPlatform.name', field: 'loanPlatform.name',
title: '借款机构', title: '借款机构',
slots: {
default: ({ row }) => {
return <>{row.loans.map((v) => v.loanPlatform.name).join(',')}</>;
},
},
search: { el: 'input' }, search: { el: 'input' },
}, },
{ {
......
...@@ -236,7 +236,7 @@ ...@@ -236,7 +236,7 @@
realRepayAmount: [{ validator: validaterealRepayAmount, trigger: 'blur' }], realRepayAmount: [{ validator: validaterealRepayAmount, trigger: 'blur' }],
}); });
const onHide = () => { const onHide = () => {
currentInfo.value = {}; // currentInfo.value = {};
}; };
const openModal = (info, detail, type) => { const openModal = (info, detail, type) => {
showModal.value = true; showModal.value = true;
......
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