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

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