|
|
@@ -74,7 +74,7 @@
|
|
|
>
|
|
|
<template v-slot:result="{ row }">
|
|
|
<el-tag size="medium" :type="getTimelineItemType(getDictValue('流程实例的结果', row.result))"> {{getDictValue('流程实例的结果', row.result)}} </el-tag>
|
|
|
-
|
|
|
+
|
|
|
</template>
|
|
|
<template v-slot:durationInMillis="{ row }">
|
|
|
{{getDateTime(row.durationInMillis)}}
|
|
|
@@ -132,12 +132,19 @@
|
|
|
showOverflowTooltip: true,
|
|
|
fixed: 'left'
|
|
|
},
|
|
|
+ {
|
|
|
+ prop: 'processInstance.processTypeName',
|
|
|
+ label: '流程分类',
|
|
|
+ align: 'center',
|
|
|
+ showOverflowTooltip: true,
|
|
|
+ minWidth: 150
|
|
|
+ },
|
|
|
{
|
|
|
prop: 'processInstance.name',
|
|
|
label: '流程名称',
|
|
|
align: 'center',
|
|
|
showOverflowTooltip: true,
|
|
|
- minWidth: 200
|
|
|
+ minWidth: 150
|
|
|
},
|
|
|
{
|
|
|
prop: 'name',
|
|
|
@@ -145,14 +152,14 @@
|
|
|
label: '任务名称',
|
|
|
align: 'center',
|
|
|
showOverflowTooltip: true,
|
|
|
- minWidth: 200
|
|
|
+ minWidth: 150
|
|
|
},
|
|
|
{
|
|
|
prop: 'processInstance.startUserNickname',
|
|
|
label: '流程发起人',
|
|
|
align: 'center',
|
|
|
showOverflowTooltip: true,
|
|
|
- minWidth: 200
|
|
|
+ minWidth: 120
|
|
|
},
|
|
|
{
|
|
|
prop: 'result',
|
|
|
@@ -190,7 +197,7 @@
|
|
|
label: '耗时',
|
|
|
align: 'center',
|
|
|
showOverflowTooltip: true,
|
|
|
- minWidth: 180
|
|
|
+ minWidth: 130
|
|
|
},
|
|
|
// {
|
|
|
// columnKey: 'action',
|
|
|
@@ -248,7 +255,7 @@
|
|
|
if (result === '处理中') {
|
|
|
return 'warning';
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
return '';
|
|
|
},
|
|
|
getDateTime(ms){
|