Commit 38ca6f76 authored by 沈翠玲's avatar 沈翠玲

修复管理

parent ca5d1073
......@@ -89,7 +89,7 @@
borrower: currentDetail.value?.borrower,
oldName: '',
newName: form.newName,
oldPhone: [],
oldPhone: [currentDetail.value?.borrower?.phone],
newPhone: [],
kinship: form.kinship,
flowStatus: 'pending',
......
......@@ -164,6 +164,13 @@
key: 'oldPhone',
labelWidth: 95,
},
default: ({ row }) => {
return (
<>
{typeof row.oldPhone === 'object' ? row.oldPhone.join(',') : row.oldPhone}
</>
);
},
},
{
field: 'newPhone',
......@@ -176,6 +183,13 @@
key: 'newPhone',
labelWidth: 95,
},
default: ({ row }) => {
return (
<>
{typeof row.newPhone === 'object' ? row.newPhone.join(',') : row.newPhone}
</>
);
},
},
{
field: 'repairStatus',
......
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