0
点赞
收藏
分享

微信扫一扫

Linux系统使用(超详细)

小贴贴纸happy 2023-07-14 阅读 47
{
      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,
        }));
      }
},
 
举报

相关推荐

0 条评论