31 lines
		
	
	
		
			518 B
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			518 B
		
	
	
	
		
			Vue
		
	
	
	
<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>
 |