37 lines
771 B
Vue
37 lines
771 B
Vue
<template><new-bg>
|
|
<flex-col>
|
|
<system-title show-back custom-title="环卫巡航" />
|
|
<ModuleContent padding="0px 20px 20px">
|
|
<div class="_map">
|
|
<Map></Map>
|
|
</div>
|
|
</ModuleContent>
|
|
</flex-col>
|
|
</new-bg>
|
|
</template>
|
|
|
|
<script>
|
|
import Map from "../../components/Map.vue";
|
|
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";
|
|
|
|
export default {
|
|
name: "huanweixunhang",
|
|
components: {
|
|
ModuleContent,
|
|
FlexCol, NewBg, SystemTitle,
|
|
Map
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
._map {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
</style>
|