695593266@qq.com пре 1 недеља
родитељ
комит
1d80f343ec
1 измењених фајлова са 4 додато и 2 уклоњено
  1. 4 2
      src/components/processSubmitDialog/processSubmitDialog.vue

+ 4 - 2
src/components/processSubmitDialog/processSubmitDialog.vue

@@ -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;