diff --git a/gyxtp/src/api/api/graph.js b/gyxtp/src/api/api/graph.js
index 2f7ba8f..c1c1ad9 100644
--- a/gyxtp/src/api/api/graph.js
+++ b/gyxtp/src/api/api/graph.js
@@ -80,4 +80,25 @@ export const getKeyWorlds = () => {
url: '/api/test/getKeyWorlds',
method: 'get',
});
-};
\ No newline at end of file
+};
+
+export const getDocInfoBylinkIds = (param) => {
+ return request({
+ url: '/api/test/getDocInfoBylinkIds/'+param,
+ method: 'get',
+ });
+};
+
+export const getPointInfoByUUID = (param) => {
+ return request({
+ url: '/api/test/getPointInfoByUUID/'+param,
+ method: 'get',
+ });
+};
+
+export const getReInfoByNameAndType = (name,type) => {
+ return request({
+ url: '/api/test/getReInfoByNameAndType/'+name+"/"+type,
+ method: 'get',
+ });
+};
diff --git a/gyxtp/src/router/router.js b/gyxtp/src/router/router.js
index 9a0b2fe..5ce14f6 100644
--- a/gyxtp/src/router/router.js
+++ b/gyxtp/src/router/router.js
@@ -99,6 +99,15 @@ const routes = [
// component: () => import ("../views/graphPageNoJson.vue")
},
{
+ path: '/pointInfo/:id',
+ name: 'pointInfo',
+ meta: {
+ title: '详情界面',
+ },
+ component: () => import('../view/pointInfo.vue'),
+ // component: () => import ("../views/graphPageNoJson.vue")
+ },
+ {
path: '/articleInfo',
name: 'articleInfo',
meta: {
diff --git a/gyxtp/src/view/pointInfo.vue b/gyxtp/src/view/pointInfo.vue
new file mode 100644
index 0000000..f33d832
--- /dev/null
+++ b/gyxtp/src/view/pointInfo.vue
@@ -0,0 +1,1053 @@
+
+
+
+
-
-
-
-
-
-
-