24 lines
403 B
Vue
24 lines
403 B
Vue
|
|
<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>
|