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
| <template>
| <a-card :bordered="false">
| <a-row type="flex" :gutter="16">
| <a-col :md="5">
| <WarehouseTree :title="title"/>
| </a-col>
| <a-col :md="19">
| <GoodsShelvesList/>
| </a-col>
| </a-row>
|
| </a-card>
| </template>
|
| <script>
| import GoodsShelvesList from './GoodsShelvesList.vue'
| import WarehouseTree from './WarehouseTree.vue'
|
| export default {
| name: 'GoodsShelves',
| components: {
| GoodsShelvesList,
| WarehouseTree
| },
| data() {
| return {
| title: '库位货架管理'
| }
| },
| methods: {}
| }
| </script>
|
| <style scoped lang="less">
| /deep/ .ant-card-body {
| padding: 8px;
| }
| </style>
|
|