diff --git a/src/views/modules/base/organization/organization.vue b/src/views/modules/base/organization/organization.vue
index 70303212a..e6211572c 100644
--- a/src/views/modules/base/organization/organization.vue
+++ b/src/views/modules/base/organization/organization.vue
@@ -1897,7 +1897,7 @@ export default {
const url = '/gov/org/agency/agencydetail'
let params = {
- agencyId: localStorage.getItem('agencyId')
+ agencyId: this.currentAgencyId
}
const { data, code, msg } = await requestPost(url,params)
diff --git a/src/views/modules/shequzhili/event/cpts/event-info.vue b/src/views/modules/shequzhili/event/cpts/event-info.vue
index 6a1346c8c..e270ce25c 100644
--- a/src/views/modules/shequzhili/event/cpts/event-info.vue
+++ b/src/views/modules/shequzhili/event/cpts/event-info.vue
@@ -110,8 +110,8 @@
-
协 办:
+ v-if="item.assistanceUnitName">
+
协办单位:
{{ item.assistanceUnitName }}
diff --git a/src/views/modules/shequzhili/event/cpts/process-form-demand.vue b/src/views/modules/shequzhili/event/cpts/process-form-demand.vue
index 93c82dc2f..b8672a240 100644
--- a/src/views/modules/shequzhili/event/cpts/process-form-demand.vue
+++ b/src/views/modules/shequzhili/event/cpts/process-form-demand.vue
@@ -52,7 +52,7 @@
-
处理中
- 已办结
+ 已完成
--
@@ -609,7 +609,7 @@ export default {
this.tableData.forEach(item => {
if (item.operationType === '2') {
- item.operationTypeShow = '已转需求'
+ item.operationTypeShow = '已转服务'
}
if (item.operationType === '1') {
item.operationTypeShow = '已立项'
diff --git a/src/views/modules/visual/basicinfo/basicInfoMain.vue b/src/views/modules/visual/basicinfo/basicInfoMain.vue
index df96c67ab..6f7b19380 100644
--- a/src/views/modules/visual/basicinfo/basicInfoMain.vue
+++ b/src/views/modules/visual/basicinfo/basicInfoMain.vue
@@ -172,8 +172,8 @@ let iconSource; // icon
let polygonSource;//变电站标注多边形
let select;//选中标注
-let xoffset = 0.0051
-let yoffset = 0.0002
+let xoffset = 0
+let yoffset = 0
//url图标
@@ -634,10 +634,10 @@ const vueGis = {
coorArray.forEach((item, index) => {
if (index % 2 == 0) {//偶
- item = (parseFloat(item) + xoffset) + ''
+ item = (parseFloat(item) + parseFloat(xoffset)) + ''
itemArray.push(item)
} else {//奇
- item = (parseFloat(item) + yoffset) + ''
+ item = (parseFloat(item) + parseFloat(yoffset)) + ''
itemArray.push(item)
polygonArray.push(itemArray)
@@ -703,12 +703,12 @@ const vueGis = {
coorArray.forEach((item, index) => {
// itemArray.push(item)
if (index % 2 == 0) {//偶
- item = (parseFloat(item) + xoffset) + ''
+ item = (parseFloat(item) + parseFloat(xoffset)) + ''
itemArray.push(item)
} else {//奇
- item = (parseFloat(item) + yoffset) + ''
+ item = (parseFloat(item) + parseFloat(yoffset)) + ''
itemArray.push(item)
polygonArray.push(itemArray)
itemArray = []