Browse Source

chore: compose

master
wangxiang 2 years ago
parent
commit
1d84a81cfb
No known key found for this signature in database
GPG Key ID: 1BA7946AB6B232E4
  1. 4
      src/views/workflow/task/workflowStep/workflowStep.data.ts

4
src/views/workflow/task/workflowStep/workflowStep.data.ts

@ -6,6 +6,10 @@ export const columns: BasicColumn[] = [ @@ -6,6 +6,10 @@ export const columns: BasicColumn[] = [
{
title: '执行环节',
dataIndex: ['historicActivityInstance', 'activityName'],
customRender: ({ record }) => {
const activityName = record.historicActivityInstance?.activityName;
return h(Tag, { color: 'processing' }, () => activityName || '结束');
},
width: 200,
},
{

Loading…
Cancel
Save