{
title: '版本',
dataIndex: 'version',
hideInTable: true,
renderFormItem: (a,b:any) => {
return (
<>
{version}(状态:{b.options?b.options.filter((item: { value: string; })=>item.value===status)[0]?.label:''})
</>
);
},
request: async () => {
const res = await getDataDictionary('Approved_status')
return res.map((i) => ({
value: i.value,
label: i.label,
}));
}
},