houjie
2023-08-21 672f4c7f756ff1ad3cf8aae18a5ce999773894b9
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
41
42
43
44
45
46
<template>
  <a-row
    type="flex"
    :gutter="16"
  >
    <a-col
      :md="4"
      :sm="24"
    >
      <supplier-category-left @clickTreeNode="getSelectNode" />
    </a-col>
    <a-col
      :md="24-4"
      :sm="24"
    >
      <supplier-model-right :recordSelect="currentNodeSelect" />
    </a-col>
  </a-row>
</template>
 
<script>
import SupplierCategoryLeft from './modules/supplier/SupplierCategoryLeft'
import SupplierModelRight from './modules/supplier/SupplierModelRight'
export default {
  name: 'SuppliertList',
  components: {
    SupplierCategoryLeft,
    SupplierModelRight,
  },
  data() {
    return {
      description: '供应商项目',
      currentNodeSelect: '',
    }
  },
  methods: {
    getSelectNode(val) {
      this.currentNodeSelect = val;
    },
  }
}
</script>
 
<style scoped>
@import '~@assets/less/common.less';
</style>