Browse Source

可视化

V1.0
jiangyy 3 years ago
parent
commit
a77f6c1f2a
  1. 3
      .env.development
  2. 9
      src/views/modules/visual/communityGovern/fivelayers/mapIndex.vue

3
.env.development

@ -1,6 +1,7 @@
NODE_ENV=development
# VUE_APP_API_SERVER = http://epmet-dev.elinkservice.cn:41080/api
VUE_APP_API_SERVER = http://192.168.1.140/api
# VUE_APP_API_SERVER = http://192.168.1.140/api
VUE_APP_API_SERVER = https://epmet-test.elinkservice.cn/api
# VUE_APP_API_SERVER = https://epmet-cloud.elinkservice.cn/api
# VUE_APP_API_SERVER = https://epdc-shibei.elinkservice.cn/api

9
src/views/modules/visual/communityGovern/fivelayers/mapIndex.vue

@ -305,7 +305,7 @@
</div>
</div>
<div v-show="selPlaceType==='enterprise_partrol'">
<div v-show="selPlaceType==='enterprise_patrol'">
<div class="popTitle">企事业信息</div>
<div class="popContentTitle">场所类型
<span>{{ selInfo.placeTypeName }}</span>
@ -782,10 +782,11 @@ const vueGis = {
this.loadGroupRent(info)
}
if (info.placeType === 'party_unit') {//
this.loadPartyUnit(info)
}
if (info.placeType === 'enterprise_partrol') {//
if (info.placeType === 'enterprise_patrol') {//
this.loadEnterprisePartrol(info)
}
@ -1009,10 +1010,10 @@ const vueGis = {
},
async loadEnterprisePartrol (info) {
const url = "/gov/org/enterprise/detail"
const url = "/gov/org/enterprise/detail/" + info.id
// const url = "http://yapi.elinkservice.cn/mock/245/gov/org/enterprise/detail"
const { data, code, msg } = await requestGet(url)
const { data, code, msg } = await requestPost(url)
if (code === 0) {
// debugger

Loading…
Cancel
Save