中建四局(资源管理):完成车辆冲洗抓拍布局

This commit is contained in:
Jack 2022-08-25 17:17:32 +08:00
parent de98168865
commit 1b41a0ab6f

View File

@ -1,14 +1,23 @@
<template>
<Card title="车辆冲洗抓拍">
车辆冲洗抓拍
<div class="list">
<CarTable />
</div>
</Card>
</template>
<script>
import Card from '../components/Card.vue'
import CarTable from './components/CarTable.vue'
export default {
components: { Card }
components: { Card, CarTable }
}
</script>
<style></style>
<style lang="less" scoped>
.list {
box-sizing: border-box;
padding-top: 20px;
height: 100%;
}
</style>