From 9f51306b10520a2be30bedfe1b34c288cf770f43 Mon Sep 17 00:00:00 2001 From: surprise <15810472099@163.com> Date: 星期四, 19 十月 2023 17:51:30 +0800 Subject: [PATCH] 坡度坡向功能新增,临时图层添加定位。空间查询功能优化; --- src/views/Index.vue | 25 +++++++------------------ 1 files changed, 7 insertions(+), 18 deletions(-) diff --git a/src/views/Index.vue b/src/views/Index.vue index 7f2ab5c..64e8258 100644 --- a/src/views/Index.vue +++ b/src/views/Index.vue @@ -1,25 +1,12 @@ <template> - <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" - ></export-map> + <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"></export-map> <export-list v-if="store.state.setExportList"></export-list> <menus></menus> <bottom-btn v-if="store.state.isShowMap"></bottom-btn> <mouse-move v-if="store.state.isShowMap"></mouse-move> - <spatial-box - v-if="layerSpatialshow" - @SETspatialClose="SETspatialClose" - ></spatial-box> - <coord-location - v-if="layerLocationshow" - @SETcoordClose="setCoordLocation" - > + <spatial-box v-if="layerSpatialshow" @SETspatialClose="SETspatialClose"></spatial-box> + <coord-location v-if="layerLocationshow" @SETcoordClose="setCoordLocation"> </coord-location> <details-query v-if="store.state.details.showDetails"> </details-query> <div v-if="store.state.isShowMap"> @@ -30,6 +17,7 @@ </div> <plotting-inquire></plotting-inquire> <attribute-info v-if="store.state.setEditTemporaryShow"></attribute-info> + <slopeQuery v-if="store.state.showSlopeQuey"></slopeQuery> </div> </template> @@ -66,7 +54,8 @@ import plottingInquire from "./plotting/plottingInquire.vue"; //灞炴�х紪杈� import attributeInfo from "./plotting/attributeInfo.vue"; - +// 鍧″害鍊� +import slopeQuery from "./query/slopeQuery.vue"; import router from "@/router"; import { useStore } from "vuex"; // 寮曞叆useStore 鏂规硶 -- Gitblit v1.9.3