Browse Source

chore: icon compose

master
wangxiang 2 years ago
parent
commit
f96ffc0be1
No known key found for this signature in database
GPG Key ID: 1BA7946AB6B232E4
  1. 14
      src/views/workflow/model/index.vue

14
src/views/workflow/model/index.vue

@ -32,30 +32,30 @@
}, },
{ {
label: '发布', label: '发布',
icon: 'ant-design:delete-outlined', icon: 'fa-solid:bullhorn',
onClick: handleDeploy.bind(null, record) onClick: handleDeploy.bind(null, record)
}]" }]"
:dropDownActions="[ :dropDownActions="[
{ {
label: '激活', label: '激活',
icon: 'ant-design:delete-outlined', icon: 'fa-solid:toggle-on',
ifShow: record.processDefinition?.suspend===true, ifShow: record.processDefinition?.suspend,
onClick: handleProcessActive.bind(null, record) onClick: handleProcessActive.bind(null, record)
}, },
{ {
label: '挂起', label: '挂起',
icon: 'ant-design:delete-outlined', icon: 'fa-solid:toggle-off',
ifShow: record.processDefinition?.suspend===false, ifShow: !record.processDefinition?.suspend,
onClick: handleProcessSuspend.bind(null, record) onClick: handleProcessSuspend.bind(null, record)
}, },
{ {
label: '导出', label: '导出',
icon: 'ant-design:delete-outlined', icon: 'fa-solid:file-import',
onClick: handleExportXml.bind(null, record) onClick: handleExportXml.bind(null, record)
}, },
{ {
label: '复制', label: '复制',
icon: 'ant-design:delete-outlined', icon: 'ant-design:copy-outlined',
onClick: handleCopy.bind(null, record) onClick: handleCopy.bind(null, record)
}, },
{ {

Loading…
Cancel
Save