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

还款记录增加审核状态

parent c22c5070
...@@ -674,6 +674,24 @@ ...@@ -674,6 +674,24 @@
title: '关联减免ID', title: '关联减免ID',
showOverflow: 'tooltip', showOverflow: 'tooltip',
}, },
{
field: 'flowStatus',
title: '审核状态',
showOverflow: 'tooltip',
width: 80,
fieldNames: { label: 'label', value: 'value' },
slots: {
default: ({ row }) => {
return (
<>
{row.flowStatus
? FlowStatus.value?.find((v) => v.value === row.flowStatus)?.label
: ''}
</>
);
},
},
},
{ {
field: 'stages.id', field: 'stages.id',
title: '关联分期ID', title: '关联分期ID',
......
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