2024-08-06 14:30:41 +00:00
|
|
|
<template><new-bg>
|
|
|
|
|
<flex-col>
|
|
|
|
|
<system-title show-back custom-title="环卫巡航" />
|
|
|
|
|
<ModuleContent padding="0px 20px 20px">
|
2024-07-31 14:04:10 +00:00
|
|
|
<div class="_map">
|
|
|
|
|
<Map></Map>
|
|
|
|
|
</div>
|
2024-08-06 14:30:41 +00:00
|
|
|
</ModuleContent>
|
|
|
|
|
</flex-col>
|
|
|
|
|
</new-bg>
|
2024-07-31 14:04:10 +00:00
|
|
|
</template>
|
|
|
|
|
|
2024-07-01 14:53:31 +00:00
|
|
|
<script>
|
2024-07-31 14:04:10 +00:00
|
|
|
import Map from "../../components/Map.vue";
|
2024-08-06 14:30:41 +00:00
|
|
|
import SystemTitle from "../../components/smallCommon/SystemTitle.vue";
|
|
|
|
|
import NewBg from "../../components/NewBg.vue";
|
|
|
|
|
import FlexCol from "../../components/FlexCol.vue";
|
|
|
|
|
import ModuleContent from "../../components/ModuleContent.vue";
|
2024-07-31 14:04:10 +00:00
|
|
|
|
2024-07-01 14:53:31 +00:00
|
|
|
export default {
|
2024-07-31 14:04:10 +00:00
|
|
|
name: "huanweixunhang",
|
|
|
|
|
components: {
|
2024-08-06 14:30:41 +00:00
|
|
|
ModuleContent,
|
|
|
|
|
FlexCol, NewBg, SystemTitle,
|
2024-07-31 14:04:10 +00:00
|
|
|
Map
|
|
|
|
|
}
|
2024-07-01 14:53:31 +00:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="less">
|
2024-08-06 14:30:41 +00:00
|
|
|
._map {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: relative;
|
2024-07-31 14:04:10 +00:00
|
|
|
}
|
2024-07-01 14:53:31 +00:00
|
|
|
</style>
|