diff --git a/.env.development b/.env.development
index 8eca712..f844c2d 100644
--- a/.env.development
+++ b/.env.development
@@ -1,5 +1,5 @@
# VITE_APP_URL = http://192.168.31.82:8771
VITE_APP_URL = http://18.167.251.121:10015
# VITE_APP_URL = http://192.168.31.118:8080
-VITE_APP_URL = http://192.168.31.82:8755
+# VITE_APP_URL = http://192.168.31.82:8755
VITE_GOOGLE_CLIENT_ID = 216037134725-7q8vqp0ohtmohlosltkfg7bd2v29rm5a.apps.googleusercontent.com
diff --git a/src/components/Canvas/FlowCanvas/flow-canvas.vue b/src/components/Canvas/FlowCanvas/flow-canvas.vue
index 79f4024..32030a7 100644
--- a/src/components/Canvas/FlowCanvas/flow-canvas.vue
+++ b/src/components/Canvas/FlowCanvas/flow-canvas.vue
@@ -99,7 +99,8 @@
const exportFlow = () => {
// flowManager.exportFlow()
- console.log(flowManager.exportFlow())
+ const json = JSON.parse(JSON.stringify(stateManager.nodes.value))
+ console.log(json)
}
onMounted(() => {
diff --git a/src/router/index.ts b/src/router/index.ts
index de58ff9..9c24f07 100644
--- a/src/router/index.ts
+++ b/src/router/index.ts
@@ -45,7 +45,7 @@ const router = createRouter({
component: () => import('../views/home/index.vue'),
children: [
{
- path: 'test/:id',
+ path: 'test',
name: 'test',
component: () => import('../views/home/test.vue'),
meta: { topNavStyle: '2' }
diff --git a/src/views/home/left-nav.vue b/src/views/home/left-nav.vue
index f5c2474..d54cead 100644
--- a/src/views/home/left-nav.vue
+++ b/src/views/home/left-nav.vue
@@ -15,6 +15,9 @@