zenglf
2023-08-17 7442a435d058bd17d6fc679e1b7956bf3a5d32ae
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
<template>
  <a-row
    type="flex"
    :gutter="16"
  >
    <a-col
      :md="6"
      :sm="24"
    >
      <spare-part-category-left />
    </a-col>
    <a-col
      :md="24-6"
      :sm="24"
    >
      <spare-part-right />
    </a-col>
  </a-row>
</template>
 
<script>
import SparePartCategoryLeft from './modules/sparePartInventory/SparePartCategoryLeft'
import SparePartRight from './modules/sparePartInventory/SparePartRight.vue'
export default {
  name: 'SparePartInventoryList',
  components: {
    SparePartCategoryLeft,
    SparePartRight,
  },
  data() {
    return {
      description: '备件信息'
    }
  },
  methods: {}
}
</script>
 
<style scoped>
@import '~@assets/less/common.less';
</style>