zhaowei
2025-01-13 58848b1a18d29929ba84b0336860f258b913070f
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">
        <ProductStructureTree/>
      </a-col>
      <a-col :md="19">
        <ProductStructureMain/>
      </a-col>
    </a-row>
 
    <!--导入文件公共弹窗-->
    <ImportFileModal/>
  </a-card>
</template>
 
<script>
  import ProductStructureTree from '../common/ProductStructureTree'
  import ProductStructureMain from './modules/ProductStructure/ProductStructureMain'
  import ImportFileModal from '../common/ImportFileModal'
 
  export default {
    name: 'ProductStructure',
    components: {
      ProductStructureTree,
      ProductStructureMain,
      ImportFileModal
    },
    data() {
      return {}
    },
    methods: {}
  }
</script>
 
<style scoped lang="less">
  /deep/ .ant-card-body {
    padding: 8px;
  }
</style>