| 1234567891011121314151617181920212223242526 |
- <template>
- <div style="height: 100%;">
- <m-card title="血缘关系" bodyStyle="flex: 1" style="height: 100%;" class="d-flex flex-column">
- <m-graph :to-api="toApi"></m-graph>
- </m-card>
- </div>
- </template>
- <script>
- // 业务域-血缘关系
- import MGraph from '../../components/mGraph'
- import MCard from '@/components/MCard'
- import { api } from '@/api/dataGovernance'
- export default {
- name: 'businessDomain-graph',
- components: { MCard, MGraph },
- data () {
- return {
- toApi: api.getBusinessDomainGraph
- }
- }
- }
- </script>
- <style lang="less" scoped>
- </style>
|