24282 11 maanden geleden
bovenliggende
commit
9f4c628753

+ 1 - 1
jy-ui/src/components/flow/PropertySetting/index.vue

@@ -176,7 +176,7 @@ watch(
     // 监听节点属性变化并更新
     props.lf.setProperties(objId.value, {
       nodeRatioNumber: n,
-      nodeRatio: n.toString()
+      nodeRatio: n ? n.toString() : undefined
     })
   }
 )

+ 1 - 1
jy-ui/src/components/flow/PropertySetting/skip.vue

@@ -74,7 +74,7 @@ const config: FormConfigType[] = [
   {
     type: 'select',
     prop: 'conditionType',
-    label: '条件方式',
+    label: '条件',
     option: [
       {
         key: 'gt',