Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
39ca1364
提交
39ca1364
编写于
11月 09, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
地图逻辑调整
上级
5d945402
变更
1
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
11 行增加
和
7 行删除
+11
-7
CONTROL-BASE.vue.ftl
@CONTROL/地图/CONTROL-BASE.vue.ftl
+11
-7
未找到文件。
@CONTROL/地图/CONTROL-BASE.vue.ftl
浏览文件 @
39ca1364
...
...
@@ -144,7 +144,7 @@ import { Http } from "@/ibiz-core/utils";
this.items = [];
this.items = response.data;
this.series.forEach((temp:any) => {
temp.data = this.convertDat(t
his,t
emp.name);
temp.data = this.convertDat(temp.name);
});
this.setOptions();
return response;
...
...
@@ -202,7 +202,8 @@ import { Http } from "@/ibiz-core/utils";
longitude:'<#if mapitem.getLongitudePSAppDEField?? && mapitem.getLongitudePSAppDEField()??>${mapitem.getLongitudePSAppDEField().getCodeName()?lower_case}</#if>',
text:'<#if mapitem.getTextPSAppDEField?? && mapitem.getTextPSAppDEField()??>${mapitem.getTextPSAppDEField().getCodeName()?lower_case}</#if>',
tips:'<#if mapitem.getTipsPSAppDEField?? && mapitem.getTipsPSAppDEField()??>${mapitem.getTipsPSAppDEField().getCodeName()?lower_case}</#if>',
},
code:'${mapitem_index}'
}<#if mapitem_has_next>,</#if>
</#list>
</#if>
}
...
...
@@ -221,6 +222,9 @@ import { Http } from "@/ibiz-core/utils";
{
label:'<#if mapitem.getName?? && mapitem.getName()??>${mapitem.getName()}</#if>',
color:'<#if mapitem.getColor?? && mapitem.getColor()??>${mapitem.getColor()}</#if>',
dimension:4,
min:${mapitem_index},
max:${mapitem_index},
}<#if mapitem_has_next>,</#if>
</#list>
</#if>
...
...
@@ -339,21 +343,21 @@ import { Http } from "@/ibiz-core/utils";
}
// 定位数据位置
public convertDat (
_this:any,
tag:any) {
public convertDat (tag:any) {
if( !this.geoCoordMap){
return []
}
let res:any = []
let mapItemModel =
_
this.mapItems[tag];
let mapItemData :any=
_
this.items[tag];
let mapItemModel = this.mapItems[tag];
let mapItemData :any= this.items[tag];
mapItemData.forEach((item:any) => {
let latitude = item[mapItemModel.latitude];
let longitude = item[mapItemModel.longitude];
let geoCoord:number =
_
this.geoCoordMap.findIndex((temp:any)=>{return temp.latitude == latitude && temp.longitude == longitude});
let geoCoord:number = this.geoCoordMap.findIndex((temp:any)=>{return temp.latitude == latitude && temp.longitude == longitude});
if (geoCoord > -1) {
res.push({
name: this.geoCoordMap[geoCoord].name,
value: [latitude,longitude].concat(mapItemData.filter((temp:any)=>{return temp[mapItemModel.latitude] == latitude && temp[mapItemModel.longitude]==longitude }).length)
value: [latitude,longitude].concat(mapItemData.filter((temp:any)=>{return temp[mapItemModel.latitude] == latitude && temp[mapItemModel.longitude]==longitude }).length
,mapItemModel.code
)
});
}
});
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录