29 lines
637 B
Vue
29 lines
637 B
Vue
|
|
<template>
|
||
|
|
<Card title="检查统计">
|
||
|
|
<div class="list-group">
|
||
|
|
<div class="list"><MaterialTable title="物料进场" /></div>
|
||
|
|
<div class="list"><MaterialTable title="物料出场" /></div>
|
||
|
|
<div class="list"><MaterialTable title="材料检验" /></div>
|
||
|
|
</div>
|
||
|
|
</Card>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import Card from '../components/Card.vue'
|
||
|
|
import MaterialTable from './components/MaterialTable.vue'
|
||
|
|
export default {
|
||
|
|
components: { Card, MaterialTable }
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="less" scoped>
|
||
|
|
.list-group {
|
||
|
|
height: 100%;
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-around;
|
||
|
|
.list {
|
||
|
|
width: 28%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|