30 lines
639 B
Vue
Raw Normal View History

2022-10-17 10:13:22 +08:00
<template>
<Card title="物资管理">
2022-10-17 10:13:22 +08:00
<div class="list-group">
<div class="list"><MaterialTable title="材料订单" /></div>
<div class="list"><MaterialTable title="材料运单" /></div>
2022-12-09 16:53:04 +08:00
<div class="list"><MaterialTable title="采购合同" /></div>
2022-10-17 10:13:22 +08:00
</div>
</Card>
</template>
<script>
import Card from '../components/Card.vue'
import MaterialTable from './components/MaterialTable.vue'
2022-12-09 16:53:04 +08:00
2022-10-17 10:13:22 +08:00
export default {
2022-12-09 16:53:04 +08:00
components: { Card, MaterialTable },
2022-10-17 10:13:22 +08:00
}
</script>
<style lang="less" scoped>
.list-group {
height: 100%;
display: flex;
justify-content: space-around;
.list {
width: 28%;
}
}
</style>