|
|
@@ -156,7 +156,7 @@
|
|
|
showOverflowTooltip: true,
|
|
|
minWidth: 120,
|
|
|
formatter: (row) => {
|
|
|
- if (row.type == 0) {
|
|
|
+ if (row.executeUserType == 0) {
|
|
|
return row.executeUsers.map((i) => i.groupName).join(',');
|
|
|
}
|
|
|
return '';
|
|
|
@@ -168,7 +168,7 @@
|
|
|
align: 'center',
|
|
|
showOverflowTooltip: true,
|
|
|
formatter: (row) => {
|
|
|
- if (row.type == 0) {
|
|
|
+ if (row.executeUserType == 0) {
|
|
|
return row.executeUsers.map((i) => i.userName).join(',');
|
|
|
}
|
|
|
return '';
|
|
|
@@ -181,7 +181,7 @@
|
|
|
showOverflowTooltip: true,
|
|
|
minWidth: 110,
|
|
|
formatter: (row) => {
|
|
|
- if (row.type == 1) {
|
|
|
+ if (row.executeUserType == 1) {
|
|
|
return row.executeUsers.map((i) => i.teamName).join(',');
|
|
|
}
|
|
|
return '';
|