|
|
@@ -101,6 +101,7 @@
|
|
|
v-if="
|
|
|
scope.row.type !== 60 &&
|
|
|
scope.row.type !== 70 &&
|
|
|
+ scope.row.type !== 71 &&
|
|
|
scope.row.options.length > 0
|
|
|
"
|
|
|
>
|
|
|
@@ -118,7 +119,8 @@
|
|
|
v-if="
|
|
|
scope.row.type === 60 ||
|
|
|
scope.row.type === 70 ||
|
|
|
- scope.row.type === 80
|
|
|
+ scope.row.type === 80 ||
|
|
|
+ scope.row.type === 71
|
|
|
"
|
|
|
>
|
|
|
{{ getAssignRuleOptionName(scope.row) }}
|
|
|
@@ -385,7 +387,7 @@
|
|
|
);
|
|
|
} else if (row.type === 60) {
|
|
|
return row.variableName;
|
|
|
- } else if (row.type === 70) {
|
|
|
+ } else if (row.type === 70 || row.type == 71) {
|
|
|
let data = JSON.parse(row.variableName);
|
|
|
if (data.direction == 1) {
|
|
|
return topLevel2.find((item) => item.value == data.topLevel)?.label;
|