开源vue关系图谱组件:relation-graph vue实现企业股权架构图

用这个关系图谱组件可以非常方便的展示如组织机构图谱、股权架构图谱、集团关系图谱等知识图谱,可提供多种图谱布局,包括树状布局、中心布局、力学布局自动布局等。

用起来简单方便,通过组件自身提供的配置项,可以实现非常复杂的功能,网站中有详细使用方法和在线demo,以及可视化的配置工具。

API/配置说明在:http://relation-graph.com/#/docs
项目地址是:https://github.com/seeksdream/relation-graph

用这个做企业股权架构图非常合适,我比较了很多插件,这个功能最强大。功能非常齐全。

image.png

实际例子


image.png

常规树状图是根节点指向多个子节点。这个图中根节点在最底层,找祖宗节点,并且箭头要指向最底层节点,废了九牛二虎之力终于实现了。

这里主要注意一点,股权数字一般在link里体现,默认股权数字只会展示在连接线靠近箭头处,像我这种需求那么股权数字就会重叠在一起,改布局的源码是不可能改了。

所以换个思路,股权数字和node节点绑在一起,节点node通过slot插槽弄个弄个绝对定位的div来显示股权数字,棒呆!

1,首先,使用npm或者cnpm安装relation-graph:

npm install --save relation-graph

2,在你的vue页面中使用这个组件:

<template>
  <div>
    <p>箭头从上往下指   控股文字显示在箭头处重叠</p>
    <div v-loading="g_loading" style="margin-top:50px;width: calc(100% - 10px);height:calc(100vh - 140px);">
      <SeeksRelationGraph ref="seeksRelationGraph" :options="graphOptions" :on-node-expand="onNodeExpand" >
      <div slot="node" slot-scope="{node}">
        <!-- @click="showNodeMenus(node, $event)" @contextmenu.prevent.stop="showNodeMenus(node, $event)" -->
          <div style="height:64px;line-height: 64px;border-radius: 32px;cursor: pointer;" >
            <!-- <i style="font-size: 30px;" :class="node.data.myicon" /> -->
            {{node.text}}
          </div>
          <div v-if="!node.data.isRoot" style="color: forestgreen;font-size: 16px;position: absolute;width: 60px;height:25px;line-height: 25px;margin-top:5px;margin-left:8px;text-align: center;background-color: rgba(66,187,66,0.2);">
            {{node.data.num}}
          </div>
        </div>
      </SeeksRelationGraph>

    </div>
  </div>
</template>

<script>
import SeeksRelationGraph from 'relation-graph'
export default {
  name: 'SeeksRelationGraphDemo',
  components: { SeeksRelationGraph },
  data() {
    return {
      g_loading: true,
      demoname: '---',
      graphOptions: {
        "backgrounImage": "http://ai-mark.cn/images/ai-mark-desc.png",
        "backgrounImageNoRepeat": false,
        "layouts": [
          {
            "label": "中心",
            "layoutName": "tree",
            "layoutClassName": "seeks-layout-center",
            "defaultJunctionPoint": "border",
            "defaultNodeShape": 0,
            "defaultLineShape": 5,  // 1直线
            "min_per_width": "200",
            "max_per_width": "300",
            "min_per_height": "150",
            "max_per_height": "300",
            "centerOffset_x": "0",
            "centerOffset_y": "0",
          }
        ],
        "defaultLineMarker": {  // 箭头样式
          "markerWidth": 22,
          "markerHeight": 22,
          "refX":15,
          "refY": 6,
          "data": "M2,2 L10,6 L2,10 L6,6 L2,2"
        },
        "allowShowMiniNameFilter": true,
        "allowShowMiniToolBar": true,
        "allowSwitchLineShape": true,
        "allowSwitchJunctionPoint": true,
        "defaultNodeShape": 1,
        "defaultNodeWidth": "150",
        "defaultNodeHeight": "50",
        "defaultLineShape": 4,
        "defaultJunctionPoint": "tb",
        "defaultShowLineLabel": true,
        "disableZoom": false,
        "disableDragNode": false,
        "defaultExpandHolderPosition": "top",
        "defaultNodeBorderWidth": 2,
        "defaultNodeColor": "rgba(144, 238, 144, 1)",
        "isMoveByParentNode": false,
        isHideArrow: false,
      },
    }
  },
  created() {
  },
  mounted() {
    this.demoname = this.$route.params.demoname
    this.getInitData()
  },
  methods: {
    showNodeMenus(){

    },
    getInitData(){
       var  __graph_json_data={
        "rootId": "a",
        "nodes":[
          {
            "id": "a",
            "text": "a公司",
          },
          {
            "id": "b",
            "id2": "b2222",
            "text": "b公司",
            hasChildren: true,
            'data': { 'num': '11%' }
          },
          {
            "id": "c",
            "text": "c公司"
          },
        ],
        "links": [
          {
            "from": "b",
            "to": "a",
            // text: '控股份111',
            styleClass: "link-class"
          },
          {
            "from": "c",
            "to": "a",
            // text: '控股份222'
          },
          
        ]
      }
      __graph_json_data={
        rootId: '根节点Id',
        nodes: [
          { id: '根节点Id', name: '节点-1', data: { isRoot: true }, fixed:true, x:0, y:200 },
          { id: '节点b', name: '节点-b', data: { num: '22%' , hasChildren: true}, fixed:true,  },
          { id: '节点c', name: '节点-c', data: { num: '22%' ,hasChildren: true}, fixed:true,  },

        ],
        links: [
          { from: '节点b', to: '根节点Id', text: '' },
          { from: '节点c', to: '根节点Id', text: '' },

        ]
      }
      // 计算排列第二层级的节点的位置  使根节点在中心  第二层的均匀分布 根据nodes.length
      //(nodes.length-index)
      if(__graph_json_data.nodes.length==2){
        __graph_json_data.nodes[1].fixed=true
        __graph_json_data.nodes[1].x=0
      }
      if(__graph_json_data.nodes.length==3){
        __graph_json_data.nodes[1].fixed=true
        __graph_json_data.nodes[1].x=-250
        __graph_json_data.nodes[2].fixed=true
        __graph_json_data.nodes[2].x=250
      }


      this.setGraphData(__graph_json_data)
    },
    setGraphData(__graph_json_data) {
     
      // console.log(JSON.stringify(__graph_json_data))
      __graph_json_data.nodes.forEach(thisNode => {
        if (thisNode.text === '深圳市腾讯计算机系统有限公司') {
          thisNode.width = 300
          thisNode.height = 100
          // thisNode.offset_x = -80
        }
        
        // 为节点《这个节点原本是没有子节点的》设置属性expandHolderPosition,使其在没有子节点的情况下也能显示【展开/收缩】按钮,当点击展开时动态加载子节点数据
      
        if (thisNode.data.hasChildren ) {
          // thisNode.data = { asyncChild: true, loaded: false, id: thisNode.id }; // 这是一个自定义属性,用来在后续判断如果点击了这个节点,则动态获取数据
          thisNode.data.asyncChild = true
          thisNode.data.loaded = false
          thisNode.expandHolderPosition = "top";
          thisNode.expanded = false;
        }
      })
      setTimeout(function() {
        this.g_loading = false
        this.$refs.seeksRelationGraph.setJsonData(__graph_json_data, (seeksRGGraph) => {
          // 这些写上当图谱初始化完成后需要执行的代码
           this.$nextTick(()=>{
                this.$refs.seeksRelationGraph.focusRootNode()
              // this.$refs.seeksRelationGraph.refresh();
            })
        })
      }.bind(this), 1000)
    },
    onNodeExpand(node, e) {  // 模拟动态加载数据
      console.log('点击的节点',node)
      if (node.data && node.data.asyncChild === true && node.data.loaded === false) {
        this.g_loading = true
        node.data.loaded = true
        setTimeout(function() {
          this.g_loading = false
          var _new_json_data = {
            nodes: [
              { id: node.id + '-child-1', text: node.id + '-的子节点1', data:{hasChildren: true,num:'12%'},},
              { id: node.id + '-child-2', text: node.id + '-的子节点2', data:{num:'92%'}},
              // { id: node.id + '-child-3', text: node.id + '-的子节点3'}
            ],
            links: [
              { to: node.id, from: node.id + '-child-1', },
              { to: node.id, from: node.id + '-child-2', },
              // { from: node.id, to: node.id + '-child-3', text: '动态子节点'}
            ]
          }
          _new_json_data.nodes.forEach(thisNode => {
             if (thisNode.data.hasChildren ) {
              // thisNode.data = { asyncChild: true, loaded: false, id: thisNode.id }; // 这是一个自定义属性,用来在后续判断如果点击了这个节点,则动态获取数据
              thisNode.data.asyncChild = true
              thisNode.data.loaded = false
              thisNode.expandHolderPosition = "top";
              thisNode.expanded = false;
            }
          })

         // 动态追加数据
          this.$refs.seeksRelationGraph.appendJsonData(_new_json_data, (seeksRGGraph) => {
            // 这些写上当图谱初始化完成后需要执行的代码
             this.$nextTick(()=>{
              // this.$refs.seeksRelationGraph.refresh();
            })
          })
        }.bind(this), 1000)
        return
      }
    }
  }
}
</script>
<style >
/* .is-straight {
    & + g {
      .c-rg-link-text {
        transform: rotate(-90deg) translateY(20px);
      }
    }
  } */
  .link-class  .c-rg-link-text {
      transform: rotate(-90deg) translateY(20px);
  }
  .c-rg-link-text{
      /* transform: rotate(-90deg) ; */
  }
</style>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,172评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,346评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,788评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,299评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,409评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,467评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,476评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,262评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,699评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,994评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,167评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,827评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,499评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,149评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,387评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,028评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,055评论 2 352

推荐阅读更多精彩内容