(function() {
//
Vue.component('death-cause', {
template: '
\
死亡原因
\
\
\
\
\
\
\
\
\
\
\
\
\
',
props: ["data"],
data: function() {
return {
causeData: []
}
},
mounted: function() {
},
watch:{
data:function(data){
this.data = data;
this.initData();
}
},
filters:{
formatData:function(index){
var colorArr = ["bgc-00e6f3","bgc-03fa6c","bgc-ff616f","bgc-0fa5f2","bgc-6576e0","bgc-da0ff2","bgc-f24a0f","bgc-ebff61","bgc-fea92f"];
return colorArr[index];
}
},
methods: {
initData:function(){//死亡原因
this.causeData = this.data["死亡原因"].series[0].data;
var myChart = echarts.init(document.getElementById('div-shiwang-echart'));
var option = {
// "title": {
// "text": "性别分布",
// "subtext": "性别分布",
// "x": "center"
// },
"tooltip": {
"trigger": "item"
},
color: ["#00e6f3","#03fa6c","#ff616f","#0fa5f2","#6576e0","#da0ff2","#f24a0f","#ebff61","#fea92f"],
"series": [{
"center": [
"50%",
"50%"
],
radius: ['50%', '70%'],
"name": "",
"type": "pie",
"itemStyle": {
"normal": {
"label": {
"show": false
},
"labelLine": {
"show": false
}
}
},
"data": this.causeData
}]
}
if(myChart){
myChart.clear();
}
myChart.setOption(option);
}
}
})
})()