You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<div class="pc-container">
|
|
|
|
<NavigationBar></NavigationBar>
|
|
|
|
<foldpanelLeft :title="xiaoquIntroduce.deptName + '简介'">
|
|
|
|
<IndexModelLeft />
|
|
|
|
</foldpanelLeft>
|
|
|
|
<foldpanelRight>
|
|
|
|
<IndexModelRight />
|
|
|
|
</foldpanelRight>
|
|
|
|
<LeafletMap />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import NavigationBar from "@/components/NavigationBar/index.vue";
|
|
|
|
import { mapGetters } from "vuex";
|
|
|
|
import {
|
|
|
|
foldpanelLeft,
|
|
|
|
IndexModelLeft,
|
|
|
|
foldpanelRight,
|
|
|
|
IndexModelRight,
|
|
|
|
} from "@/views/components/index.js";
|
|
|
|
import LeafletMap from "@/components/LeafletMap";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "Index",
|
|
|
|
computed: {
|
|
|
|
...mapGetters(["dept", "xiaoquIntroduce"]),
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
NavigationBar,
|
|
|
|
foldpanelLeft,
|
|
|
|
IndexModelLeft,
|
|
|
|
foldpanelRight,
|
|
|
|
IndexModelRight,
|
|
|
|
LeafletMap,
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
// 版本号
|
|
|
|
version: "3.8.8",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.$store.dispatch("GetXiaoquInfo", this.dept.deptId);
|
|
|
|
this.$store.dispatch("GetcolorList", this.dept.deptId);
|
|
|
|
},
|
|
|
|
methods: {},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.pc-container {
|
|
|
|
position: relative;
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background: url("~@/assets/images/ui/index_bg.jpg");
|
|
|
|
background-size: 100% 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
</style>
|