Commit 687c5691 by lixinming

no message

parent 6f103230
......@@ -264,8 +264,8 @@ export async function getZhyy() {
if (info.boShi) itemCount += info.boShi;
if (info.boshiyishang) itemCount += info.boshiyishang;
if (!年度就业人数趋势分析Map[annual]) 年度就业人数趋势分析Map[annual] = 0;
年度就业人数趋势分析Map[annual] += itemCount;
if (!年度就业人数趋势分析Map[annual]) 年度就业人数趋势分析Map[annual] = {key:annual, value:0};
年度就业人数趋势分析Map[annual].value += itemCount;
});
let 年度就业人数趋势分析 = Object.values(年度就业人数趋势分析Map);
......@@ -294,18 +294,13 @@ export async function getZhyy() {
}
}
}
let 产业规模分析 = [];
let 在孵企业营收占比 = [];
产业规模分析List.forEach(info => {
let {key, value} = info;
产业规模分析.push({key, value});
在孵企业营收占比.push({key, value});
})
let zhyy = {
园区概况:{dataList:园区概况, title:["key", "value"]},
在孵企业数据: { dataList: 在孵企业数据, titleList: ['key', 'value'] },
......@@ -320,7 +315,7 @@ export async function getZhyy() {
企业服务类型: { dataList: fuWuQiYeTypeList, titleList: ['key', 'value'] },
荣誉资质:{ dataList:荣誉资质, titleList: ['key', 'value'] },
年度就业人数趋势分析:[{name:"年度就业人数趋势分析", data:年度就业人数趋势分析}],
产业规模分析:{dataList:产业规模分析, title:["key", "value"]}
在孵企业营收占比:{dataList:在孵企业营收占比, title:["key", "value"]}
}
return zhyy;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment