lg_frontend/pages/wuzuzhi/huanweixunhang.vue

37 lines
771 B
Vue
Raw Permalink Normal View History

2024-08-06 14:30:41 +00:00
<template><new-bg>
<flex-col>
<system-title show-back custom-title="环卫巡航" />
<ModuleContent padding="0px 20px 20px">
<div class="_map">
<Map></Map>
</div>
2024-08-06 14:30:41 +00:00
</ModuleContent>
</flex-col>
</new-bg>
</template>
2024-07-01 14:53:31 +00:00
<script>
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-01 14:53:31 +00:00
export default {
name: "huanweixunhang",
components: {
2024-08-06 14:30:41 +00:00
ModuleContent,
FlexCol, NewBg, SystemTitle,
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-01 14:53:31 +00:00
</style>