| | |
| | | <template> |
| | | <div class="body_box"> |
| | | |
| | | <div |
| | | class="body_box" |
| | | v-loading="store.state.loading" |
| | | element-loading-background="rgba(0, 0, 0, 0.8)" |
| | | > |
| | | <export-map |
| | | v-if="layerExportshow" |
| | | @SETexportMap="SETexportMap" |
| | |
| | | @SETcoordClose="setCoordLocation" |
| | | > |
| | | </coord-location> |
| | | <details-query v-if="store.state.details.showDetails"> |
| | | |
| | | </details-query> |
| | | <details-query v-if="store.state.details.showDetails"> </details-query> |
| | | <div v-if="store.state.isShowMap"> |
| | | <map-view></map-view> |
| | | </div> |
| | | <div v-if="!store.state.isShowMap"> |
| | | <ol-map></ol-map> |
| | | </div> |
| | | |
| | | <plotting-inquire></plotting-inquire> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | import detailsQuery from "@/views/query/detailsQuery.vue"; |
| | | //出图列表 |
| | | import exportList from "./export/exportList.vue"; |
| | | //标绘查询 |
| | | import plottingInquire from "./plotting/plottingInquire.vue"; |
| | | |
| | | import router from "@/router"; |
| | | import { useStore } from "vuex"; // 引入useStore 方法 |