浏览代码

zzy + 元数据项详情

zhiyuan-007 9 月之前
父节点
当前提交
6595409a82

+ 1 - 1
index.html

@@ -4,7 +4,7 @@
     <meta charset="UTF-8" />
     <link rel="icon" type="image/svg+xml" href="/jianzhu.svg" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <title>上海市住建行业基础数据应用系统</title>
+    <title>上海市住建行业基础数据应用系统</title>
   </head>
   <body>
     <div id="app"></div>

二进制
src/assets/fonts/YouSheBiaoTiHei.ttf


+ 4 - 0
src/assets/init.scss

@@ -28,4 +28,8 @@ html,
     background: rgba(235, 245, 255, 0.8);
   }
 
+}
+@font-face {
+  font-family: 'YouSheBiaoTiHei';
+  src: url('@/assets/fonts/YouSheBiaoTiHei.ttf') format('truetype');
 }

+ 4 - 4
src/components/MunicipalFacilities.vue

@@ -18,10 +18,10 @@
 						{{item.per}}
 					</div>
 				</div>
-				<div class="item_bottom"
-					:style="`width:${item.per};background: linear-gradient(270deg, rgba(29, 128, 224, 0.64) 0%, rgba(255, 255, 255, 0.64) 100%);`">
-          <img src="@/assets/imgs/guangquan.png" alt="" />
-				</div>
+<!--				<div class="item_bottom"-->
+<!--					:style="`width:${item.per};background: linear-gradient(270deg, rgba(29, 128, 224, 0.64) 0%, rgba(255, 255, 255, 0.64) 100%);`">-->
+<!--          <img src="@/assets/imgs/guangquan.png" alt="" />-->
+<!--				</div>-->
 			</div>
 		</div>
 	</div>

+ 1 - 1
src/components/RoadGrade.vue

@@ -9,7 +9,7 @@
 			<div class="right">
 				<div class="top center">
 					<div class="top_left center">
-						面积(万㎡)
+						公里
 					</div>
 					<div class="top_right center">
 						{{num}}

+ 8 - 8
src/components/RoadWarnings.vue

@@ -46,20 +46,20 @@
 			})
 			arr.value.forEach(item=>{
 				if(item.LFXS_NAME == "一幅路"){
-					item["className1"] = "top_one"
-					item["className2"] = "bottom_one"
+					item["className1"] = "top_four"
+					item["className2"] = "bottom_four"
 				}else if(item.LFXS_NAME == "两幅路"){
-					item["className1"] = "top_two"
-					item["className2"] = "bottom_two"
+					item["className1"] = "top_four"
+					item["className2"] = "bottom_four"
 				}else if(item.LFXS_NAME == "三幅路"){
-					item["className1"] = "top_three"
-					item["className2"] = "bottom_three"
+					item["className1"] = "top_four"
+					item["className2"] = "bottom_four"
 				}else if(item.LFXS_NAME == "四幅路"){
 					item["className1"] = "top_four"
 					item["className2"] = "bottom_four"
 				}else{
-					item["className1"] = "top_five"
-					item["className2"] = "bottom_five"
+					item["className1"] = "top_four"
+					item["className2"] = "bottom_four"
 				}
 			})
 		})

+ 17 - 0
src/service/map.js

@@ -25,4 +25,21 @@ export function getLegend(url){
     return requestInstance_Service_token({
         url
     })
+}
+
+
+export function getMapNum(type,id){
+    return requestInstance_Map_token({
+        url:'/DataSearch/OneCode/clustering',
+        data:{
+            "esAggregation":{
+                "field":"1111",
+                "value":type,
+                "size":999
+            },
+            "businessField": {
+                "catalogCode": id
+            }
+        }
+    })
 }

+ 4 - 0
src/store/mapStore.js

@@ -2,7 +2,11 @@ import {defineStore} from "pinia";
 export const useMapStore = defineStore('map',{
     state:() =>({
         layerShow:false,  //服务列表是否开启
+        currentLayerType:"mainPage", //当前服务列表类型
         currentLayerList:[],  //当前服务列表
+        currentNum:null,
+        currentLayer:null,
+        scale:null,
         whiteMoldState:false,   //白模状态
         camera:{      //相机信息
             heading:null,

+ 27 - 4
src/unit/map/addLayer.js

@@ -66,12 +66,31 @@ export function FeatureThreeDimension(params){
     })
 }
 
-
-//点查询
+//区县聚类
 export function MapClickByType(status){
     invokeParams('MapClickAll', {
         "status": status,
-        "disableLayerIdList":["districtArea","districtStreet"]
+        "disableLayerIdList":["districtArea","districtStreet","bgFeaturelayer"]
+    })
+}
+
+//点查询
+export function AreaJsonRankShow(params){
+    debugger
+    invokeParams('AreaJsonRankShow', {
+        "type": params.type,  //qx、jz
+        "district": null,
+        "id": "AreaTextLayer",
+        "title": "文本标绘",
+        "status": params.status,
+        "data": params.data,
+        "symbol": {
+            "color": [255, 255, 255, 1],
+            "backgroundColor": [77, 161, 194, 0.4],
+            "font": {
+                "size": 12
+            }
+        },
     })
 }
 
@@ -115,7 +134,11 @@ export async function AddYaoganMapLayer() {
     })
 }
 
-
+//关闭图层
+export function clearAllLayer() {
+    invokeParams('ClearMapLayers',{
+    })
+}
 
 
 export function AddSingleLayer(params){

+ 81 - 4
src/views/c-cpns/Map.vue

@@ -11,22 +11,99 @@ import CityGis from '../../unit/map/CityGis.Bridge.js';
 import {myBridge} from "../../unit/map/map.js";
 import {useMapStore} from "../../store/mapStore.js";
 import {nextTick,ref,onMounted} from "vue";
-import {AddSingleLayer, MapClickByType, SetBackground} from "../../unit/map/addLayer.js";
+import {
+  AddSingleLayer,
+  AreaJsonRankShow,
+  FeatureThreeDimension,
+  MapClickByType,
+  SetBackground
+} from "../../unit/map/addLayer.js";
+import {getMapNum} from "@/service/map.js";
 let bridge;
 export default {
   name: "Map",
   setup(){
+    const mapStore = useMapStore();
     onMounted(()=>{
       myBridge.bridgeContent =  bridge = new CityGis.Bridge({
         id: "i_map",
-        url: 'https://cimweb.zjw.sh.cegn.cn:2007/VUE-Map-Tool-Widget/#/jk_map?theme=dark&type=3D', //建科发布
-        //url: 'http://localhost:8081/#/jk_map?theme=dark&type=3D',
+        url: 'https://cimweb.zjw.sh.cegn.cn:2007/VUE-Map-Tool-Widget/#/jk_map?theme=dark_hyjcsjk&type=3D', //建科发布
+        //url: 'http://localhost:8081/#/jk_map?theme=dark_hyjcsjk&type=3D',
         onReady: function () {
           console.log("地图创建完成")
         }
       })
       MapClickByType('show');
-      SetBackground()
+      SetBackground();
+      bridge.addEventListener(arg => {
+        switch (arg.action) {
+          case "MapExtentChanged":
+            let scale = arg.data.scale;
+            if(mapStore.currentNum){
+              if(scale > 100000 && mapStore.scale  <= 100000){
+                getMapNum('county',mapStore.currentNum).then(res =>{
+                  debugger
+                  let data = res.data.data;
+                  let zxCount = 0;
+                  let zxList = ['黄浦区','徐汇区','长宁区','静安区','普陀区','虹口区','杨浦区']
+                  data.forEach(item =>{
+                    if(zxList.indexOf(item.name) > -1){
+                      zxCount += item.value * 1;
+                    }
+                  })
+                  data.push({
+                    name:"中心城区",
+                    value:zxCount
+                  })
+                  debugger
+                  AreaJsonRankShow({
+                    type:"zx",
+                    status:"show",
+                    data:data
+                  });
+                })
+              }else if(scale > 80000 && mapStore.scale  <= 80000 ){
+                debugger
+                getMapNum('county',mapStore.currentNum).then(res =>{
+                  debugger
+                  let data = res.data.data
+                  AreaJsonRankShow({
+                    type:"qx",
+                    status:"show",
+                    data:data
+                  });
+                })
+              }else if(scale < 70000 && mapStore.scale  >= 70000){
+                getMapNum('street',mapStore.currentNum).then(res =>{
+                  debugger
+                  let data = res.data.data
+                  AreaJsonRankShow({
+                    type:"jz",
+                    status:"show",
+                    data:data
+                  });
+                })
+              }
+              if(scale < 6000 && mapStore.scale  >= 6000){
+                debugger
+                FeatureThreeDimension({
+                  url:mapStore.currentLayer.ADDRESS,
+                  token:mapStore.currentLayer.TOKEN,
+                  status:"show"
+                });
+              }else if(scale > 6000 && mapStore.scale  <= 6000){
+                debugger
+                FeatureThreeDimension({
+                  url:mapStore.currentLayer.ADDRESS,
+                  token:mapStore.currentLayer.TOKEN,
+                  status:"hide"
+                });
+              }
+            }
+            mapStore.scale = scale;
+            break;
+        }
+      })
     })
   }
 }

+ 230 - 51
src/views/c-cpns/ServiceTree.vue

@@ -2,27 +2,61 @@
   <div id="serviceTree" v-show="mapStore.layerShow" :class="[mapStore.left_board?'switch-left-active':'switch-left']">
     <div class="common-title">
       <span>图层</span>
+      <div class="title-right">
+        <el-switch
+            v-model="layerModel"
+            size="middle"
+            @change="changeLayerModel"
+            active-text="图层"
+            inactive-text="聚类"
+        />
+      </div>
+
     </div>
     <div class="tree-content scroll">
-      <el-tree
-          :data="treeData"
-          @check="changeChange"
-          ref="treeRef"
-          show-checkbox
-      >
-        <template #default="{ node, data }">
-          <span  class="custom-tree-label">{{ node.label }}</span>
-          <span  v-if="node.isLeaf" class="custom-tree-gl-icon" @click="showLayerGL(data)">
+      <template v-if="layerModel">
+        <el-tree
+            :data="treeData"
+            @check="changeChange"
+            ref="treeRef"
+            show-checkbox
+        >
+          <template #default="{ node, data }">
+            <span  class="custom-tree-label">{{ node.label }}</span>
+            <span  v-if="node.isLeaf" class="custom-tree-gl-icon" @click="showLayerGL(data)">
             <OfficeBuilding />
           </span>
-          <span  v-if="node.isLeaf" class="custom-tree-detail-icon" @click="showDetailDialog(data)">
+            <span  v-if="node.isLeaf" class="custom-tree-detail-icon" @click="showDetailDialog(data)">
             <Document />
           </span>
-          <span  v-if="node.isLeaf" class="custom-tree-icon" @click="applyData(data)">
+            <span  v-if="node.isLeaf" class="custom-tree-icon" @click="applyData(data)">
             <Edit />
           </span>
-        </template>
-      </el-tree>
+          </template>
+        </el-tree>
+      </template>
+      <template v-else>
+        <el-tree
+            :data="treeData"
+            node-key="labelId"
+            @check-change="handleCheckChange"
+            ref="treeRef"
+            show-checkbox
+        >
+          <template #default="{ node, data }">
+            <span  class="custom-tree-label">{{ node.label }}</span>
+            <span  v-if="node.isLeaf" class="custom-tree-gl-icon" @click="showLayerGL(data)">
+            <OfficeBuilding />
+          </span>
+            <span  v-if="node.isLeaf" class="custom-tree-detail-icon" @click="showDetailDialog(data)">
+            <Document />
+          </span>
+            <span  v-if="node.isLeaf" class="custom-tree-icon" @click="applyData(data)">
+            <Edit />
+          </span>
+          </template>
+        </el-tree>
+      </template>
     </div>
   </div>
 </template>
@@ -31,23 +65,56 @@
 import {onMounted, ref, watch} from "vue";
 import CommonTitle from "@/views/c-cpns/CommonTitle.vue";
 import {getServiceTree} from "@/service/http.js";
-import {AddSingleLayer, FeatureThreeDimension} from "@/unit/map/addLayer.js";
+import {AddSingleLayer, AreaJsonRankShow, clearAllLayer, FeatureThreeDimension} from "@/unit/map/addLayer.js";
 import {useMapStore} from "@/store/mapStore.js";
-import {Edit,Document,OfficeBuilding} from "@element-plus/icons-vue";
+import {Edit, Document, OfficeBuilding, Aim} from "@element-plus/icons-vue";
+import {getMapNum} from "@/service/map.js";
 export default {
   name: "ServiceTree",
-  components: {CommonTitle,Edit,Document,OfficeBuilding},
+  components: {Aim, CommonTitle,Edit,Document,OfficeBuilding},
   setup(){
     const mapStore = useMapStore()
     let treeData = ref([]);
     const treeRef = ref(null);
     const showGL = ref(false);
+    const showGroup = ref(false);
     const GLLayer = ref('');
-    function getTreeData(){
+    const GroupLayer = ref('');
+    const layerModel = ref(false);
+    function changeLayerModel(item){
+      clearAllLayer()
+      mapStore.currentLayerList = []
+      AreaJsonRankShow({
+        status:"hide"
+      });
+    }
+    watch(() => mapStore.currentLayerType,(val) => {
+      changeLayerModel();
+      mapStore.currentNum = null;
+      mapStore.currentLayer = null;
+      FeatureThreeDimension({
+        status:"hide"
+      });
+      AreaJsonRankShow({
+        status:"hide"
+      });
+      if(mapStore.currentLayerType === "mainPage"){  //首页
+        getTreeData("1318");
+      }else if(mapStore.currentLayerType === "houseBuilding"){  //房屋建筑
+        getTreeData("1319");
+      }else{   //市政设施
+        getTreeData("1324");
+      }
+    },{
+      immediate:true,
+      deep:true
+    })
+    function getTreeData(labelId){
       getServiceTree({
         TYPE:"",
-        labelId:"1318"
+        labelId:labelId
       }).then(res =>{
+        debugger
         let resData =res.data.data.Rows[0].children;
         treeData.value = resData;
       })
@@ -81,52 +148,149 @@ export default {
     }
     function changeChange(){
       let nowChecked = treeRef.value.getCheckedNodes(true);
-      //找到原来有现在没有的删除
-      for(let i = 0; i < mapStore.currentLayerList.length; i++){
-        if(nowChecked.findIndex(i2 =>i2.CODE === mapStore.currentLayerList[i].CODE) == -1){
-          AddSingleLayer({
-            type:mapStore.currentLayerList[i].TYPE,
-            id:mapStore.currentLayerList[i].S_CODE,
-            visible:false,
-            url:mapStore.currentLayerList[i].ADDRESS,
-            opacity:100,
-            title:mapStore.currentLayerList[i].label,
-            wkid:mapStore.currentLayerList[i].COORDINATE_SYSTEM,
-            token:mapStore.currentLayerList[i].TOKEN
-          })
-          mapStore.currentLayerList.splice(i,1);
-          i--;
+      //如果是图层
+      if(layerModel.value){
+        //找到原来有现在没有的删除
+        for(let i = 0; i < mapStore.currentLayerList.length; i++){
+          if(nowChecked.findIndex(i2 =>i2.CODE === mapStore.currentLayerList[i].CODE) == -1){
+            debugger
+            AddSingleLayer({
+              type:mapStore.currentLayerList[i].TYPE,
+              id:mapStore.currentLayerList[i].CODE,
+              visible:false,
+              url:mapStore.currentLayerList[i].ADDRESS,
+              opacity:100,
+              title:mapStore.currentLayerList[i].label,
+              wkid:mapStore.currentLayerList[i].COORDINATE_SYSTEM,
+              token:mapStore.currentLayerList[i].TOKEN
+            })
+            mapStore.currentLayerList.splice(i,1);
+            i--;
+          }
+        }
+        //找到原来没有,现在有的新增
+        for(let i = 0; i < nowChecked.length; i++){
+          if(mapStore.currentLayerList.findIndex(i2 =>i2.CODE === nowChecked[i].CODE) == -1){
+            mapStore.currentLayerList.push(nowChecked[i]);
+            debugger
+            AddSingleLayer({
+              type:nowChecked[i].TYPE,
+              id:nowChecked[i].CODE,
+              visible:true,
+              url:nowChecked[i].ADDRESS,
+              opacity:100,
+              title:nowChecked[i].label,
+              wkid:nowChecked[i].COORDINATE_SYSTEM,
+              token:nowChecked[i].TOKEN
+            })
+          }
         }
       }
-      //找到原来没有,现在有的新增
-      for(let i = 0; i < nowChecked.length; i++){
-        if(mapStore.currentLayerList.findIndex(i2 =>i2.CODE === nowChecked[i].CODE) == -1){
-          mapStore.currentLayerList.push(nowChecked[i]);
-          debugger
-          AddSingleLayer({
-            type:nowChecked[i].TYPE,
-            id:nowChecked[i].S_CODE,
-            visible:true,
-            url:nowChecked[i].ADDRESS,
-            opacity:100,
-            title:nowChecked[i].label,
-            wkid:nowChecked[i].COORDINATE_SYSTEM,
-            token:nowChecked[i].TOKEN
+    }
+    function handleCheckChange(data,checked,indeterminate){
+      clearAllLayer();
+      if (checked) {
+        // 获取所有已选中的节点
+        debugger
+        const checkedNodes = treeRef.value.getCheckedNodes(true);
+        data = checkedNodes[checkedNodes.length -1];
+        mapStore.currentNum = data.UUID;
+        mapStore.currentLayer = data;
+        AddSingleLayer({
+          type:data.TYPE,
+          id:data.CODE,
+          visible:true,
+          url:data.ADDRESS,
+          opacity:100,
+          title:data.label,
+          wkid:data.COORDINATE_SYSTEM,
+          token:data.TOKEN
+        })
+        // 只保留当前选中的节点
+        // checkedNodes.forEach(node => {
+        //   debugger
+        //   if (node.labelId !== data.labelId) {
+        //     treeRef.value.setChecked(node.labelId,false,true)
+        //   }
+        // });
+        if (checkedNodes.length > 1) {
+          treeRef.value.setCheckedKeys([data.labelId])
+        }
+        if(mapStore.scale > 100000){
+          getMapNum('county',mapStore.currentNum).then(res =>{
+            debugger
+            let data = res.data.data;
+            let zxCount = 0;
+            let zxList = ['黄浦区','徐汇区','长宁区','静安区','普陀区','虹口区','杨浦区']
+            data.forEach(item =>{
+              if(zxList.indexOf(item.name) > -1){
+                zxCount += item.value * 1;
+              }
+            })
+            data.push({
+              name:"中心城区",
+              value:zxCount
+            })
+            debugger
+            AreaJsonRankShow({
+              type:"zx",
+              status:"show",
+              data:data
+            });
+          })
+        }else if(mapStore.scale > 80000){
+          getMapNum('county',mapStore.currentNum).then(res =>{
+            debugger
+            let data = res.data.data
+            AreaJsonRankShow({
+              type:"qx",
+              status:"show",
+              data:data
+            });
           })
+        }else{
+          getMapNum('street',mapStore.currentNum).then(res =>{
+            debugger
+            let data = res.data.data
+            AreaJsonRankShow({
+              type:"jz",
+              status:"show",
+              data:data
+            });
+          })
+        }
+        if(mapStore.scale < 6000){
+          FeatureThreeDimension({
+            url:mapStore.currentLayer.ADDRESS,
+            token:mapStore.currentLayer.TOKEN,
+            status:"show"
+          });
         }
+      }else{
+        mapStore.currentNum = null;
+        mapStore.currentLayer = null;
+        FeatureThreeDimension({
+          status:"hide"
+        });
+        AreaJsonRankShow({
+          status:"hide"
+        });
       }
     }
-    onMounted(()=>{
-      getTreeData()
-    })
+    // onMounted(()=>{
+    //   getTreeData()
+    // })
     return {
       mapStore,
       treeData,
       changeChange,
+      handleCheckChange,
       treeRef,
       applyData,
       showLayerGL,
-      showDetailDialog
+      showDetailDialog,
+      layerModel,
+      changeLayerModel
     }
   }
 }
@@ -142,6 +306,13 @@ export default {
   .custom-tree-label{
     font-size: 16px;
   }
+  .custom-tree-group-icon{
+    position: absolute;
+    right: 100px;
+    width: 16px;
+    height: 16px;
+    font-size: 10px;
+  }
   .custom-tree-gl-icon{
     position: absolute;
     right: 70px;
@@ -179,6 +350,11 @@ export default {
     height: 37px;
     background: url("@/assets/imgs/tkxbt.png") no-repeat;
     background-size: 100% 100%;
+    display: flex;
+    flex-direction: row;
+    flex-wrap: nowrap;
+    justify-content: space-between;
+    align-items: stretch;
     span {
       font-family: YouSheBiaoTiHei;
       font-weight: 400;
@@ -190,6 +366,9 @@ export default {
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
     }
+    .title-right{
+      padding-right: 60px;
+    }
   }
   .tree-content{
     width: 100%;

+ 1 - 1
src/views/c-cpns/VisualizationBottom.vue

@@ -34,7 +34,7 @@ export default {
         id:"03",
         name:"municipalFacilities",
         chosen:false,
-        label:"历史"
+        label:"历史"
       }
     ])
     function changePath(item){

+ 6 - 2
src/views/c-cpns/VisualizationHeader.vue

@@ -2,7 +2,7 @@
   <div id="visualizationHeader">
     <div class="left-title">
       <span>
-         上海市住建行业基础数据应用系统
+         上海市住建行业基础数据应用系统
       </span>
     </div>
     <div class="top-menu">
@@ -22,6 +22,7 @@
 import {ref} from "vue";
 import router from "@/router/index.js";
 import {useUserStore} from "@/store/userStore.js";
+import {useMapStore} from "@/store/mapStore.js";
 import {User,SwitchButton} from "@element-plus/icons-vue";
 
 export default {
@@ -32,6 +33,7 @@ export default {
   },
   setup(){
     let userStore = useUserStore();
+    let mapStore = useMapStore();
     let menuList = ref([
       {
         id:"01",
@@ -53,11 +55,13 @@ export default {
       }
     ]);
     let username =ref('');
-    username.value = userStore.userInfo.gxjh_username;
+    username.value = userStore.userInfo?.gxjh_username;
     function changePath(item){
       menuList.value.forEach((i)=>{
         if(i.name == item.name){
           i.chosen = true;
+          debugger
+          mapStore.currentLayerType = item.name;
           router.push({name:item.name})
         }else{
           i.chosen = false;