40 lines
638 B
Vue
40 lines
638 B
Vue
|
|
|
||
|
|
<template>
|
||
|
|
<div class="paifang">
|
||
|
|
<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="18">
|
||
|
|
<Map></Map>
|
||
|
|
</a-col>
|
||
|
|
<a-col :span="6">
|
||
|
|
<a-card title="国Ⅵ输车辆" size="small">
|
||
|
|
<p>card content</p>
|
||
|
|
</a-card>
|
||
|
|
</a-col>
|
||
|
|
</a-row>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import Map from "../../components/Map.vue";
|
||
|
|
export default {
|
||
|
|
name: "paifang",
|
||
|
|
components: {
|
||
|
|
Map
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
|
||
|
|
<style scoped lang="less">
|
||
|
|
|
||
|
|
</style>
|