123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500 |
- var symptomName = last_month_day();
- $(function(){
- init();
- })
- function init(){
- //地图
- var mapChart = echarts.init(document.getElementById('mapChart'));
- mapChart.setOption({
- bmap: {
- center: [118.096435,24.485408],
- zoom: 12,
- roam: true,
- },
- tooltip : {
- trigger: 'item',
- formatter:function(params, ticket, callback){
- return params.value[2]
- }
- },
- series: [{
- type: 'scatter',
- coordinateSystem: 'bmap',
- data: [
- [118.096435, 24.485408, '厦门市'] ,
- [118.094564, 24.457358, '厦门第一医院'] ,
- [118.104103, 24.477761, '厦门中山医院'],
- [118.14748, 24.506295, '厦门中医院'],
- [118.254841, 24.665349, '厦门第五医院'],
- ]
- }]
- });
- mapChart.on('click', function (params) {
- console.log(params.value[2])
- // $("#hospitalName").html(params.value[2]);
- // if(params.value[2] == '厦门市'){
- // $("#Data").html(100);
- // $("#Outpatient").html(20000);
- // $("#Hospitalization").html(3000);
- // }
- // if(params.value[2] == '厦门第一医院'){
- // $("#Data").html(40);
- // $("#Outpatient").html(8000);
- // $("#Hospitalization").html(1200);
- // }
- // if(params.value[2] == '厦门中山医院'){
- // $("#Data").html(30);
- // $("#Outpatient").html(6000);
- // $("#Hospitalization").html(900);
- // }
- // if(params.value[2] == '厦门中医院'){
- // $("#Data").html(20);
- // $("#Outpatient").html(4000);
- // $("#Hospitalization").html(600);
- // }
- // if(params.value[2] == '厦门第五医院'){
- // $("#Data").html(10);
- // $("#Outpatient").html(2000);
- // $("#Hospitalization").html(300);
- // }
- });
- var bmap = mapChart.getModel().getComponent('bmap').getBMap()
- bmap.addControl(new BMap.MapTypeControl({mapTypes: [BMAP_NORMAL_MAP,BMAP_SATELLITE_MAP ]}));
- bmap.setMapStyle({style:'midnight'})
- var pieChart = echarts.init(document.getElementById('pieChart'));
- pieChart.setOption({
- color:["#87cefa","#ff7f50","#32cd32","#da70d6","#FD6C88"],
- legend: {
- y : '260',
- x : 'center',
- textStyle : {
- color : '#ffffff',
- },
- data : ['高血压','糖尿病','脑卒中','慢阻肺','慢性肾病'],
- },
- tooltip : {
- trigger: 'item',
- formatter: "{a}<br/>{b}<br/>{c}G ({d}%)"
- },
- calculable : false,
- series : [
- {
- name:'采集数据量',
- type:'pie',
- radius : ['40%', '70%'],
- center : ['50%', '45%'],
- itemStyle : {
- normal : {
- label : {
- show : false
- },
- labelLine : {
- show : false
- }
- },
- emphasis : {
- label : {
- show : true,
- position : 'center',
- textStyle : {
- fontSize : '20',
- fontWeight : 'bold'
- }
- }
- }
- },
- data:[
- {value:335, name:'高血压'},
- {value:310, name:'糖尿病'},
- {value:234, name:'脑卒中'},
- {value:135, name:'慢阻肺'},
- {value:235, name:'慢性肾病'}
- ]
- }
- ]
- });
- var lineChart = echarts.init(document.getElementById('lineChart'));
- lineChart.setOption({
- color:["#87cefa","#ff7f50","#32cd32","#da70d6",],
- legend: {
- y : '260',
- x : 'center',
- textStyle : {
- color : '#ffffff',
- },
- data : ['厦门第一医院','厦门中山医院','厦门中医院','厦门第五医院',],
- },
- calculable : false,
- tooltip : {
- trigger: 'item',
- formatter: "{a}<br/>{b}<br/>{c}条"
- },
- yAxis: [
- {
- type: 'value',
- axisLine : {onZero: false},
- axisLine:{
- lineStyle:{
- color: '#034c6a'
- },
- },
- axisLabel: {
- textStyle: {
- color: '#fff'
- },
- formatter: function (value) {
- return value + "k条"
- },
- },
- splitLine:{
- lineStyle:{
- width:0,
- type:'solid'
- }
- }
- }
- ],
- xAxis: [
- {
- type: 'category',
- data : ['8:00','10:00','12:00','14:00','16:00','18:00','20:00','22:00'],
- axisLine:{
- lineStyle:{
- color: '#034c6a'
- },
- },
- splitLine: {
- "show": false
- },
- axisLabel: {
- textStyle: {
- color: '#fff'
- },
- formatter: function (value) {
- return value + ""
- },
- },
- splitLine:{
- lineStyle:{
- width:0,
- type:'solid'
- }
- },
- }
- ],
- grid:{
- left: '5%',
- right: '5%',
- bottom: '20%',
- containLabel: true
- },
- series : [
- {
- name:'厦门第一医院',
- type:'line',
- smooth:true,
- itemStyle: {
- normal: {
- lineStyle: {
- shadowColor : 'rgba(0,0,0,0.4)'
- }
- }
- },
- data:[15, 0, 20, 45, 22.1, 25, 70, 55, 76]
- },
- {
- name:'厦门中山医院',
- type:'line',
- smooth:true,
- itemStyle: {
- normal: {
- lineStyle: {
- shadowColor : 'rgba(0,0,0,0.4)'
- }
- }
- },
- data:[25, 10, 30, 55, 32.1, 35, 80, 65, 76]
- },
- {
- name:'厦门中医院',
- type:'line',
- smooth:true,
- itemStyle: {
- normal: {
- lineStyle: {
- shadowColor : 'rgba(0,0,0,0.4)'
- }
- }
- },
- data:[35, 20, 40, 65, 42.1, 45, 90, 75, 96]
- },
- {
- name:'厦门第五医院',
- type:'line',
- smooth:true,
- itemStyle: {
- normal: {
- lineStyle: {
- shadowColor : 'rgba(0,0,0,0.4)'
- }
- }
- },
- data:[45, 30, 50, 75, 52.1, 55, 100, 85, 106]
- }
- ]
- });
- var histogramChart = echarts.init(document.getElementById('histogramChart'));
- histogramChart.setOption({
- color:["#87cefa","#ff7f50","#32cd32","#da70d6",],
- legend: {
- y : '250',
- x : 'center',
- data:['厦门第一医院', '厦门中山医院','厦门中医院','厦门第五医院'],
- textStyle : {
- color : '#ffffff',
- }
- },
- calculable :false,
- grid:{
- left: '5%',
- right: '5%',
- bottom: '20%',
- containLabel: true
- },
- tooltip : {
- trigger: 'axis',
- axisPointer : {
- type : 'shadow'
- }
- },
- xAxis : [
- {
- type : 'value',
- axisLabel: {
- show: true,
- textStyle: {
- color: '#fff'
- }
- },
- splitLine:{
- lineStyle:{
- color:['#f2f2f2'],
- width:0,
- type:'solid'
- }
- }
- }
- ],
- yAxis : [
- {
- type : 'category',
- data:['门诊人数(人)', '住院人次(人)','人均费用(元)'],
- axisLabel: {
- show: true,
- textStyle: {
- color: '#fff'
- }
- },
- splitLine:{
- lineStyle:{
- width:0,
- type:'solid'
- }
- }
- }
- ],
- series : [
- {
- name:'厦门第一医院',
- type:'bar',
- stack: '总量',
- itemStyle : { normal: {label : {show: true, position: 'insideRight'}}},
- data:[320, 302, 301]
- },
- {
- name:'厦门中山医院',
- type:'bar',
- stack: '总量',
- itemStyle : { normal: {label : {show: true, position: 'insideRight'}}},
- data:[120, 132, 101]
- },
- {
- name:'厦门中医院',
- type:'bar',
- stack: '总量',
- itemStyle : { normal: {label : {show: true, position: 'insideRight'}}},
- data:[220, 182, 191]
- },
- {
- name:'厦门第五医院',
- type:'bar',
- stack: '总量',
- itemStyle : { normal: {label : {show: true, position: 'insideRight'}}},
- data:[150, 212, 201]
- }
- ]
- });
- var lineChart2 = echarts.init(document.getElementById('lineChart2'));
- lineChart2.setOption({
- color:["#87cefa","#ff7f50","#32cd32","#da70d6",],
- legend: {
- y : '260',
- x : 'center',
- textStyle : {
- color : '#ffffff',
- },
- data : ['厦门第一医院','厦门中山医院','厦门中医院','厦门第五医院',],
- },
- calculable : false,
- tooltip : {
- trigger: 'item',
- formatter: "{a}<br/>{b}<br/>{c}条"
- },
- yAxis: [
- {
- type: 'value',
- axisLine : {onZero: false},
- axisLine:{
- lineStyle:{
- color: '#034c6a'
- },
- },
- axisLabel: {
- textStyle: {
- color: '#fff'
- },
- formatter: function (value) {
- return value + "条"
- },
- },
- splitLine:{
- lineStyle:{
- width:0,
- type:'solid'
- }
- }
- }
- ],
- xAxis: [
- {
- type: 'category',
- data : ['8:00','10:00','12:00','14:00','16:00','18:00'],
- axisLine:{
- lineStyle:{
- color: '#034c6a'
- },
- },
- splitLine: {
- "show": false
- },
- axisLabel: {
- textStyle: {
- color: '#fff'
- },
- formatter: function (value) {
- return value + ""
- },
- },
- splitLine:{
- lineStyle:{
- width:0,
- type:'solid'
- }
- },
- }
- ],
- grid:{
- left: '5%',
- right: '5%',
- bottom: '20%',
- containLabel: true
- },
- series : [
- {
- name:'厦门第一医院',
- type:'line',
- smooth:true,
- itemStyle: {
- normal: {
- lineStyle: {
- shadowColor : 'rgba(0,0,0,0.4)'
- }
- }
- },
- data:[15, 0, 20, 45, 22.1, 25,].reverse()
- },
- {
- name:'厦门中山医院',
- type:'line',
- smooth:true,
- itemStyle: {
- normal: {
- lineStyle: {
- shadowColor : 'rgba(0,0,0,0.4)'
- }
- }
- },
- data:[25, 10, 30, 55, 32.1, 35, ].reverse()
- },
- {
- name:'厦门中医院',
- type:'line',
- smooth:true,
- itemStyle: {
- normal: {
- lineStyle: {
- shadowColor : 'rgba(0,0,0,0.4)'
- }
- }
- },
- data:[35, 20, 40, 65, 42.1, 45, ].reverse()
- },
- {
- name:'厦门第五医院',
- type:'line',
- smooth:true,
- itemStyle: {
- normal: {
- lineStyle: {
- shadowColor : 'rgba(0,0,0,0.4)'
- }
- }
- },
- data:[45, 30, 50, 75, 52.1, 55, 6].reverse()
- }
- ]
- });
- }
|