CzRger 5 mesi fa
parent
commit
69d0952efd

+ 1 - 1
src/views/manage/theme/relation-main.vue

@@ -129,7 +129,7 @@ const initDetail = () => {
 const initText = () => {
   sysIndexFieldList(proxy.$util.formatGetParam({
     indexId: props.transfer.indexId,
-    type: 'inner_index'
+    type: props.transfer.type
   })).then(res => {
     state.textOptions = res.data.map(v => {
       v.dictLabel = v.fieldName

+ 2 - 1
src/views/manage/theme/relation.vue

@@ -174,7 +174,8 @@ const onMain = (row) => {
   state.relationMain.transfer = {
     indexId: row.indexId,
     id: row.id,
-    indexStyle: row.indexStyle
+    indexStyle: row.indexStyle,
+    type: row.type,
   }
   state.relationMain.show = true
 }

+ 5 - 1
src/views/web/archive/index.vue

@@ -501,8 +501,12 @@ const initWS = () => {
               const pMain = JSON.parse(lastMainParams)
               // 返回为最新批次的
               if (json.timestamp == pMain.timestamp) {
+                if (pMain.__type === 'inner_index') {
+                  state.mainObj.data = json.datas?.[0] || {}
+                } else {
+                  state.mainObj.data = json.datas.data?.[0] || {}
+                }
                 state.mainObj.loading = false
-                state.mainObj.data = json.datas?.[0] || {}
                 lastMainParams = ''
               }
             }

+ 8 - 3
src/views/web/archive/relation-chart.vue

@@ -30,17 +30,22 @@ const setNodes = (data) => {
   })
 }
 const setEdges = (data) => {
+  const arr: any = []
   data.edges.forEach(v => {
-    v.style = {
-      labelText: v.labelText.replace(/\\n/g, '\n')
+    if (data.nodes.some(n => n.id == v.target) && data.nodes.some(n => n.id == v.source)) {
+      v.style = {
+        labelText: v.labelText.replace(/\\n/g, '\n')
+      }
+      arr.push(v)
     }
   })
+  return arr
 }
 const initChart = () => {
   if (props.data?.nodes?.length > 0) {
     const data = JSON.parse(JSON.stringify(props.data))
     setNodes(data)
-    setEdges(data)
+    data.edges = setEdges(data)
     if (state.chart) {
       state.chart.destroy()
       state.chart = null