@@ -252,7 +255,7 @@ const dropFunc = e => {
{
+
+
+
+
-
-
+
+
-
-
-
-
-
+
+
![]()
+
+
{
-
diff --git a/src/views/createapp/components/workFlowConfig/CustomSaENode.vue b/src/views/createapp/components/workFlowConfig/CustomSaENode.vue
index 8195ea145636fac5a8ec0b3a5de3e380312aba7e..dde63133422ad667d7a12343e1d92755247d20ad 100644
--- a/src/views/createapp/components/workFlowConfig/CustomSaENode.vue
+++ b/src/views/createapp/components/workFlowConfig/CustomSaENode.vue
@@ -57,6 +57,7 @@ watch(
.vue-flow__node {
min-width: unset !important;
padding: 0;
+ margin-top: -4px;
.nodeSaEBorderBox {
div {
text-align: center;
@@ -84,6 +85,10 @@ watch(
}
}
+.vue-flow__node:has(.default){
+ margin-top: 0px;
+}
+
.nodeSaEBorder {
width: 56px;
height: 56px;
diff --git a/src/views/createapp/components/workFlowConfig/useLayout.js b/src/views/createapp/components/workFlowConfig/useLayout.js
index 1dd933ac0d73c746995c96fa9f3346ace6f44e19..9827bf7391b0652734a09b40731871abe11111e6 100644
--- a/src/views/createapp/components/workFlowConfig/useLayout.js
+++ b/src/views/createapp/components/workFlowConfig/useLayout.js
@@ -48,7 +48,11 @@ export function useLayout() {
// set nodes with updated positions
return nodes.map(node => {
const nodeWithPosition = dagreGraph.node(node.id);
-
+ console.log(nodeWithPosition,'nodeWithPosition',node);
+ let position = { x: nodeWithPosition.x, y: nodeWithPosition.y }
+ if(['1','2'].includes(node.id)){
+
+ }
return {
...node,
targetPosition: isHorizontal ? Position.Left : Position.Top,
diff --git a/src/views/createapp/components/workFlowDebug.vue b/src/views/createapp/components/workFlowDebug.vue
new file mode 100644
index 0000000000000000000000000000000000000000..086b837902c2163237a3fdf59e0fa19126258e65
--- /dev/null
+++ b/src/views/createapp/components/workFlowDebug.vue
@@ -0,0 +1,36 @@
+
+
+
+
diff --git a/src/views/createapp/index.vue b/src/views/createapp/index.vue
index 081d7a05a91723da11baae73d66f49009fc3d909..8d4207958c52ed0d8fa218e284fbda8d75dd884b 100644
--- a/src/views/createapp/index.vue
+++ b/src/views/createapp/index.vue
@@ -1,5 +1,5 @@