(function() {
Vue.component('disease-crowd', {
template: '
\
\
高血压人群
\

\
\
\
\
\
总人数\
\
{{data1.totalNumber}}\
人\
\
\
\
\
\
上月新增\
\
{{data1.addNumber}}\
人\
\
\
\
\
\
环比\
\

\
{{data1.ringRatio}}\
\
\
\
\
\
糖尿病人群
\

\
\
\
\
\
总人数\
\
{{data2.totalNumber}}\
人\
\
\
\
\
\
上月新增\
\
{{data2.addNumber}}\
人\
\
\
\
\
\
环比\
\

\
{{data2.ringRatio}}\
\
\
\
\
\
孕产妇人群
\
\
\
\
\
总人数\
\
{{data3.totalNumber}}\
人\
\
\
\
\
\
上月新增\
\
{{data3.addNumber}}\
人\
\
\
\
\
\
环比\
\

\
{{data3.ringRatio}}\
\
\
\
\
\
65岁以上老年人人数
\
\
\
\
\
总人数\
\
{{data4.totalNumber}}\
人\
\
\
\
\
\
上月新增\
\
{{data4.addNumber}}\
人\
\
\
\
\
\
环比\
\

\
{{data4.ringRatio}}\
\
\
\
\
',
props: ["data","town"],
data: function() {
return {
activeIndex:0,
cacheActiveIndex:0,
data1:{},//高血压
data2:{},//糖尿病
data3:{},//孕产妇人群
data4:{},//65岁以上老年人人数
}
},
mounted: function() {
},
filters:{
formatData:function(value){
return toThousands(value)
}
},
methods: {
initData:function(){
var data1 = this.data[0].successFlg?this.data[0].detailModelList:[];
var data2 = this.data[1].successFlg?this.data[1].detailModelList:[];
var data3 = this.data[2].successFlg?this.data[2].detailModelList:[];
var data4 = this.data[3].successFlg?this.data[3].detailModelList:[];
this.gxyformatData(data1);
this.tnbformatData(data2);
this.ycfformatData(data3);
this.lnrformatData(data4);
},
gxyformatData:function(data){//高血压数据
var vm = this,idx;
_.map(data[0].VIEW_13_0013,function(item,index){
if(vm.town=="上饶市" && item.firstColumn=="合计"){//上饶市
idx = index;
}else if(item.firstColumn==vm.town){
idx = index;
}
})
vm.data1 = {totalNumber:data[0].VIEW_13_0013[idx].HC_13_0021,addNumber:data[1].VIEW_13_0036[idx].HC_13_0021,ringRatio:(data[2].VIEW_13_0037[idx]&&data[2].VIEW_13_0037[idx].HC_13_0023 || "0")};
},
tnbformatData:function(data){//糖尿病数据
var vm = this,idx;
_.map(data[0].VIEW_13_0026,function(item,index){
if(vm.town=="上饶市" && item.firstColumn=="合计"){//上饶市
idx = index;
}else if(item.firstColumn==vm.town){
idx = index;
}
})
vm.data2 = {totalNumber:data[0].VIEW_13_0026[idx].HC_13_0017,addNumber:data[1].VIEW_13_0034[idx].HC_13_0017,ringRatio:(data[2].VIEW_13_0027[idx]&&data[2].VIEW_13_0027[idx].HC_13_0017 || "0")};
},
ycfformatData:function(data){//孕产妇数据
var vm = this,idx;
// _.map(data[0].VIEW_16_0001,function(item,index){
// if(vm.town=="上饶市" && item.firstColumn=="合计"){//上饶市
// idx = index;
// }else if(item.firstColumn==vm.town){
// idx = index;
// }
// })
// vm.data3 = {totalNumber:data[0].VIEW_16_0001[idx].HC_15_1006,addNumber:data[1].VIEW_16_0002[idx].HC_15_1006,ringRatio:data[2].VIEW_16_0003[idx].HC_15_1009};
},
lnrformatData:function(data){//老年人数据
var vm = this,idx;
_.map(data[0].VIEW_15_0001,function(item,index){
if(vm.town=="上饶市" && item.firstColumn=="合计"){//上饶市
idx = index;
}else if(item.firstColumn==vm.town){
idx = index;
}
})
vm.data4 = {totalNumber:data[0].VIEW_15_0001[idx].HC_15_1006,addNumber:data[1].VIEW_15_0011[idx].HC_15_1006,ringRatio:data[2].VIEW_15_0008[idx].HC_15_1009};
},
diseaseClick:function(type){
this.activeIndex = type;
this.cacheActiveIndex = type;
EventBus.$emit('refresh-json-data', {type:type});
},
diseaseMouseOver:function(){
this.activeIndex = null;
},
diseaseMouseOut:function(){
this.activeIndex = this.cacheActiveIndex;
},
detailClick:function(type){//type:0高血压 1糖尿病,2孕产妇3老年人
var height = (0.42 * window.screen.width) + 'px',url="";
if(type==0){
url = '../../../page/bigData/html/alert1.html?type='+type;
}else if(type==1){
url = '../../../page/bigData/html/alert2.html?type='+type;
}else if(type==2){
url = '../../../page/bigData/html/alert3.html?type='+type;
}else if(type==3){
url = '../../../page/bigData/html/alert4.html?type='+type;
}
top.layer.open({
id: 'LAY_layuipro', //设定一个id,防止重复弹出
type: 2,
title: false,
closeBtn: 0,
shade: 0.5,
shadeClose: true,
area: ['7.604rem', '4.1875rem'],
content: url
});
}
},
watch:{
data:function(data){
if(data&&data.length>0){
this.data = data;
this.initData();
}
}
}
})
})()