From e4024064d14f07672d83d1c69f76c3d98c20061d Mon Sep 17 00:00:00 2001 From: wangzijun Date: Tue, 2 Aug 2022 14:02:47 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=96=B0=E5=A2=9E=E9=AB=98=E5=BE=B7=E8=87=AA?= =?UTF-8?q?=E5=AE=9A=E4=B9=89=E5=9B=BE=E5=B1=82=E8=A7=A3=E5=86=B3=E6=96=B9?= =?UTF-8?q?=E6=A1=88=EF=BC=9A=E9=81=97=E7=95=99=E9=97=AE=E9=A2=98=EF=BC=9A?= =?UTF-8?q?=E9=BC=A0=E6=A0=87=E7=82=B9=E5=87=BB=E5=9C=B0=E5=9B=BE=E5=90=8E?= =?UTF-8?q?=E4=BC=9A=E5=90=B8=E9=99=84=E5=88=B0=E5=9C=B0=E5=9B=BE=E4=B8=8A?= =?UTF-8?q?=EF=BC=8C=E6=93=8D=E4=BD=9C=E6=BB=9A=E8=BD=AE=E5=8F=AF=E5=8F=96?= =?UTF-8?q?=E6=B6=88=E5=90=B8=E9=99=84=202.=E6=96=B0=E5=A2=9Egojs+leaflet?= =?UTF-8?q?=E8=A7=A3=E5=86=B3=E6=96=B9=E6=A1=88=EF=BC=9A=E7=A0=94=E7=A9=B6?= =?UTF-8?q?=E8=BF=9B=E5=BA=A6=EF=BC=9A=E6=A1=88=E4=BE=8B=E7=AE=80=E5=8D=95?= =?UTF-8?q?=E7=BB=93=E5=90=88=EF=BC=8C=E5=A6=82=E9=87=87=E7=94=A8=E8=AF=A5?= =?UTF-8?q?=E6=96=B9=E6=A1=88=E9=9C=80=E8=A6=81=E6=B7=B1=E5=BA=A6=E5=AD=A6?= =?UTF-8?q?=E4=B9=A0gojs=E5=92=8Cleaflet=EF=BC=8C=E5=B0=86=E4=B8=A4?= =?UTF-8?q?=E8=80=85=E8=BF=9B=E8=A1=8C=E6=B7=B1=E5=BA=A6=E8=9E=8D=E5=90=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 6 +- public/index.html | 2 + src/App.vue | 10 +- src/demo/index-gaode.vue | 572 +++++++++++++++++ src/gojsDemo/components/FlowChart copy.vue | 580 +++++++++++++++++ src/gojsDemo/components/FlowChart.vue | 711 +++++++++++++++++++++ src/gojsDemo/components/GanttChart.vue | 199 ++++++ src/gojsDemo/index-gojs.vue | 19 + 8 files changed, 2095 insertions(+), 4 deletions(-) create mode 100644 src/demo/index-gaode.vue create mode 100644 src/gojsDemo/components/FlowChart copy.vue create mode 100644 src/gojsDemo/components/FlowChart.vue create mode 100644 src/gojsDemo/components/GanttChart.vue create mode 100644 src/gojsDemo/index-gojs.vue diff --git a/package.json b/package.json index 8bc0a3a..724c455 100644 --- a/package.json +++ b/package.json @@ -8,14 +8,16 @@ "lint": "vue-cli-service lint" }, "dependencies": { + "@amap/amap-jsapi-loader": "^1.0.1", "@antv/x6": "^1.32.3-beta.1", "@antv/x6-vue-shape": "^1.4.0", "@vue/composition-api": "^1.6.3", "core-js": "^3.6.5", "element-ui": "^2.15.9", + "gojs": "^2.2.14", "vue": "^2.6.11", - "vue-json-viewer": "^2.2.22", - "vue-baidu-map": "^0.21.22" + "vue-baidu-map": "^0.21.22", + "vue-json-viewer": "^2.2.22" }, "devDependencies": { "@vue/cli-plugin-babel": "~4.5.13", diff --git a/public/index.html b/public/index.html index 3e5a139..77dbf1a 100644 --- a/public/index.html +++ b/public/index.html @@ -5,6 +5,8 @@ + + <%= htmlWebpackPlugin.options.title %> diff --git a/src/App.vue b/src/App.vue index e577a0c..6c3d139 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,15 +1,21 @@ diff --git a/src/demo/index-gaode.vue b/src/demo/index-gaode.vue new file mode 100644 index 0000000..037d4e1 --- /dev/null +++ b/src/demo/index-gaode.vue @@ -0,0 +1,572 @@ + + + + + + \ No newline at end of file diff --git a/src/gojsDemo/components/FlowChart copy.vue b/src/gojsDemo/components/FlowChart copy.vue new file mode 100644 index 0000000..9898d96 --- /dev/null +++ b/src/gojsDemo/components/FlowChart copy.vue @@ -0,0 +1,580 @@ + + + + + + + diff --git a/src/gojsDemo/components/FlowChart.vue b/src/gojsDemo/components/FlowChart.vue new file mode 100644 index 0000000..6badf93 --- /dev/null +++ b/src/gojsDemo/components/FlowChart.vue @@ -0,0 +1,711 @@ + + + + + + + diff --git a/src/gojsDemo/components/GanttChart.vue b/src/gojsDemo/components/GanttChart.vue new file mode 100644 index 0000000..c1438bd --- /dev/null +++ b/src/gojsDemo/components/GanttChart.vue @@ -0,0 +1,199 @@ + + + + + + + diff --git a/src/gojsDemo/index-gojs.vue b/src/gojsDemo/index-gojs.vue new file mode 100644 index 0000000..51ee595 --- /dev/null +++ b/src/gojsDemo/index-gojs.vue @@ -0,0 +1,19 @@ + + + \ No newline at end of file