1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<template>
  <a-card :bordered="false">
    <a-row type="flex" :gutter="16">
      <a-col :md="5">
        <DeviceStructureTree/>
      </a-col>
      <a-col :md="19">
        <DeviceStructureMain/>
      </a-col>
    </a-row>
 
    <!--导入文件公共弹窗-->
    <ImportFileModal/>
  </a-card>
</template>
 
<script>
  import DeviceStructureTree from './modules/DeviceStructure/DeviceStructureTree'
  import DeviceStructureMain from './modules/DeviceStructure/DeviceStructureMain'
  import ImportFileModal from '../common/ImportFileModal'
 
  export default {
    name: 'DeviceStructure',
    components: {
      DeviceStructureTree,
      DeviceStructureMain,
      ImportFileModal
    },
    data() {
      return {}
    },
    methods: {}
  }
</script>
 
<style scoped lang="less">
  /deep/ .ant-card-body {
    padding: 8px;
  }
</style>