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

优化

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