graph.vue 590 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div style="height: 100%;">
  3. <m-card title="血缘关系" bodyStyle="flex: 1" style="height: 100%;" class="d-flex flex-column">
  4. <m-graph :to-api="toApi"></m-graph>
  5. </m-card>
  6. </div>
  7. </template>
  8. <script>
  9. // 业务域-血缘关系
  10. import MGraph from '../../components/mGraph'
  11. import MCard from '@/components/MCard'
  12. import { api } from '@/api/dataGovernance'
  13. export default {
  14. name: 'businessDomain-graph',
  15. components: { MCard, MGraph },
  16. data () {
  17. return {
  18. toApi: api.getBusinessDomainGraph
  19. }
  20. }
  21. }
  22. </script>
  23. <style lang="less" scoped>
  24. </style>