|
|
@@ -13,6 +13,7 @@
|
|
|
:columns="columns"
|
|
|
:datasource="datasource"
|
|
|
:cache-key="cacheKeyUrl"
|
|
|
+ @columns-change="handleColumnChange"
|
|
|
autoAmendPage
|
|
|
>
|
|
|
<template v-slot:toolbar> </template>
|
|
|
@@ -184,8 +185,11 @@
|
|
|
showOverflowTooltip: true,
|
|
|
minWidth: 110,
|
|
|
formatter: (row) => {
|
|
|
+ if ((row.type == 2 && row.status == 1) || row.type != 1) {
|
|
|
+ return row.executeUsers.map((i) => i.userName).join(',');
|
|
|
+ }
|
|
|
+ return '';
|
|
|
// if (row.type == 0) {
|
|
|
- return row.executeUsers.map((i) => i.userName).join(',');
|
|
|
// }
|
|
|
}
|
|
|
},
|