lg_frontend/pages/wuzuzhi/paifang.vue

40 lines
638 B
Vue
Raw Normal View History

2024-07-21 00:23:30 +00:00
<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>