24 lines
403 B
Vue
Raw Normal View History

2022-10-17 10:13:22 +08:00
<template>
<Card title="车辆冲洗抓拍">
<div class="list">
<CarTable type="2" />
</div>
</Card>
</template>
<script>
import Card from '../components/Card.vue'
import CarTable from './components/CarTable.vue'
export default {
components: { Card, CarTable }
}
</script>
<style lang="less" scoped>
.list {
box-sizing: border-box;
padding-top: 10px;
height:100%;
}
</style>