39 lines
599 B
Vue
39 lines
599 B
Vue
<template>
|
|
<div class="huanweixunhang">
|
|
<a-page-header
|
|
:ghost="false"
|
|
style="border-bottom: 1px solid rgb(235, 237, 240)"
|
|
title="环卫巡航"
|
|
@back="() => $router.go(-1)"
|
|
/>
|
|
<div class="_map">
|
|
<Map></Map>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Map from "../../components/Map.vue";
|
|
|
|
export default {
|
|
name: "huanweixunhang",
|
|
components: {
|
|
Map
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.huanweixunhang {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-flow: column;
|
|
|
|
._map {
|
|
height: 0;
|
|
flex: 1;
|
|
position: relative;
|
|
}
|
|
}
|
|
</style>
|