lg_frontend/pages/wuzuzhi/carWasher.vue

31 lines
518 B
Vue
Raw Permalink Normal View History

2024-07-03 02:31:16 +00:00
<template>
<div class="car-washer">
<a-page-header
:ghost="false"
style="border-bottom: 1px solid rgb(235, 237, 240)"
title="厂区车辆台账"
@back="() => $router.go(-1)"
/>
<a-row :gutter="16">
<a-col :span="3">
</a-col>
<a-col :span="12">
col-12
</a-col>
<a-col :span="3">
col-12
</a-col>
</a-row>
</div>
</template>
<script>
export default {
name: "list"
}
</script>
<style scoped lang="less">
</style>