| | |
| | | <template> |
| | | <div class="body_box"> |
| | | |
| | | <export-map |
| | | v-if="layerExportshow" |
| | | @SETexportMap="SETexportMap" |
| | |
| | | v-if="layerSpatialshow" |
| | | @SETspatialClose="SETspatialClose" |
| | | ></spatial-box> |
| | | <coord-location |
| | | v-if="layerLocationshow" |
| | | @SETcoordClose="setCoordLocation" |
| | | > |
| | | <coord-location v-if="layerLocationshow" @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 方法 |