123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562 |
- var bigData = {
- "上月": {
- "门急诊人次": 5567,
- "门诊人次": 3455,
- "急诊人次": 2112,
- "门诊总费用": 5615456.23,
- "急诊总费用": 861452.56,
- "住院人次": 1231,
- "住院总费用": 565486.45,
- "住院均次费用": 796.53,
- "住院床日数": 526,
- "住院平均床日数": 3.8
- },
- "本年": {
- "门急诊人次": 325567,
- "门诊人次": 213455,
- "急诊人次": 112112,
- "门诊总费用": 22565456.23,
- "急诊总费用": 5286452.56,
- "住院人次": 15623,
- "住院总费用": 32565486.45,
- "住院均次费用": 896.53,
- "住院床日数": 4526,
- "住院平均床日数": 2.3
- },
- "门诊人次月趋势": {
- "title": {
- "text": "门诊人次月趋势",
- "x": "center",
- textStyle: {
- color: '#b5e1fc',
- fontSize: 16,
- fontWeight: 'bold'
- }
- },
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'cross',
- crossStyle: {
- color: '#fff'
- }
- }
- },
- "grid": {
- top: '50',
- left: '60'
- },
- legend: {
- data: ['门诊人次', '环比'],
- textStyle: {
- color: '#b5e1fc'
- },
- top: '40'
- },
- xAxis: [{
- type: 'category',
- data: ['1月', '2月', '3月', '4月', '5月', '6月'],
- axisPointer: {
- type: 'shadow'
- },
- axisTick: {
- show: false
- },
- axisLine: {
- lineStyle: {
- color: '#095f8e'
- }
- },
- axisLabel: {
- color: '#b5e1fc'
- }
- }],
- yAxis: [{
- type: 'value',
- name: '门诊人次',
- nameTextStyle: {
- color: '#b5e1fc' // 坐标轴名称颜色
- },
- splitLine: {
- show: false
- },
- axisLine: {
- lineStyle: {
- color: '#095f8e'
- }
- },
- axisLabel: {
- color: '#b5e1fc'
- }
- },
- {
- type: 'value',
- name: '环比',
- min: 0,
- max: 4,
- nameTextStyle: {
- color: '#b5e1fc' // 坐标轴名称颜色
- },
- splitLine: {
- show: false // 不显示坐标轴刻度
- },
- axisLine: {
- lineStyle: {
- color: '#095f8e' // 坐标轴轴线颜色
- }
- },
- axisLabel: {
- color: '#b5e1fc' // 坐标轴刻度标签文本颜色
- }
- }
- ],
- series: [{
- name: '门诊人次',
- type: 'bar',
- "data": [
- "23541",
- "45265",
- "41253",
- "45215",
- "52125",
- "48922"
- ],
- barWidth: 20,
- label: {
- normal: {
- show: true,
- position: 'top', // 在柱状图上方显示
- color: '#fff' // 柱状图上方显示的数值颜色
- }
- },
- itemStyle: {
- barBorderRadius: [8, 8, 0, 0],
- color: '#00e6f3'
- }
- },
- {
- name: '环比',
- type: 'line',
- yAxisIndex: 1,
- "data": [
- "1.6",
- "2.3",
- "2.1",
- "3.2",
- "2.3",
- "1.5"
- ],
- itemStyle: {
- color: '#03fa6d'
- }
- }
- ]
- },
- "住院人次月趋势": {
- "title": {
- "text": "住院人次月趋势",
- "x": "center",
- textStyle: {
- color: '#b5e1fc',
- fontSize: 16,
- fontWeight: 'bold'
- }
- },
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'cross',
- crossStyle: {
- color: '#fff'
- }
- }
- },
- "grid": {
- top: '50'
- },
- legend: {
- data: ['住院人次', '环比'],
- textStyle: {
- color: '#b5e1fc'
- },
- top: '40'
- },
- xAxis: [{
- type: 'category',
- data: ['1月', '2月', '3月', '4月', '5月', '6月'],
- axisPointer: {
- type: 'shadow'
- },
- axisTick: {
- show: false
- },
- axisLine: {
- lineStyle: {
- color: '#095f8e'
- }
- },
- axisLabel: {
- color: '#b5e1fc'
- }
- }],
- yAxis: [{
- type: 'value',
- name: '住院人次',
- nameTextStyle: {
- color: '#b5e1fc' // 坐标轴名称颜色
- },
- splitLine: {
- show: false
- },
- axisLine: {
- lineStyle: {
- color: '#095f8e'
- }
- },
- axisLabel: {
- color: '#b5e1fc'
- }
- },
- {
- type: 'value',
- name: '环比',
- min: 0,
- max: 4,
- nameTextStyle: {
- color: '#b5e1fc' // 坐标轴名称颜色
- },
- splitLine: {
- show: false // 不显示坐标轴刻度
- },
- axisLine: {
- lineStyle: {
- color: '#095f8e' // 坐标轴轴线颜色
- }
- },
- axisLabel: {
- color: '#b5e1fc' // 坐标轴刻度标签文本颜色
- }
- }
- ],
- series: [{
- name: '住院人次',
- type: 'bar',
- "data": [
- "2354",
- "4526",
- "4125",
- "4521",
- "5212",
- "4892"
- ],
- barWidth: 20,
- label: {
- normal: {
- show: true,
- position: 'top', // 在柱状图上方显示
- color: '#fff' // 柱状图上方显示的数值颜色
- }
- },
- itemStyle: {
- barBorderRadius: [8, 8, 0, 0],
- color: '#ff616f'
- }
- },
- {
- name: '环比',
- type: 'line',
- yAxisIndex: 1,
- "data": [
- "1.5",
- "2.2",
- "2.3",
- "1.1",
- "1.3",
- "1.6"
- ],
- itemStyle: {
- color: '#03fa6d'
- }
- }
- ]
- },
- "昨日数据": {
- "门急诊人次": 2455,
- "住院人次": 623,
- "门急诊总费用": 565456.23,
- "住院总费用": 865486.45,
- "门急诊次均费用": 152.56,
- "住院均次费用": 796.53,
- "住院平均床日数": 3.1
- },
- "门急诊服务情况": [{
- "月份": "1",
- "门急诊总费用": "25486",
- "门急诊总费用环比": "1.3",
- "门急诊次均费用": "256",
- "门急诊次均费用环比": "1.2"
- },
- {
- "月份": "2",
- "门急诊总费用": "35486",
- "门急诊总费用环比": "2.3",
- "门急诊次均费用": "276",
- "门急诊次均费用环比": "2.2"
- },
- {
- "月份": "3",
- "门急诊总费用": "23481",
- "门急诊总费用环比": "2.3",
- "门急诊次均费用": "296",
- "门急诊次均费用环比": "1.6"
- },
- {
- "月份": "4",
- "门急诊总费用": "35482",
- "门急诊总费用环比": "1.5",
- "门急诊次均费用": "223",
- "门急诊次均费用环比": "1.4"
- },
- {
- "月份": "5",
- "门急诊总费用": "25482",
- "门急诊总费用环比": "2.3",
- "门急诊次均费用": "276",
- "门急诊次均费用环比": "1.2"
- },
- {
- "月份": "6",
- "门急诊总费用": "35486",
- "门急诊总费用环比": "2.3",
- "门急诊次均费用": "226",
- "门急诊次均费用环比": "2.2"
- }
- ],
- "门诊分类别月趋势": {
- "title": {
- "text": "门诊分类别月趋势",
- "x": "center"
- },
- "tooltip": {
- "trigger": "axis"
- },
- "grid": {
- "x2": "80px",
- "y2": "50px",
- "x": "50px",
- "y": "40px"
- },
- "xAxis": [{
- "type": "category",
- "name": "",
- "data": [
- "1月",
- "2月",
- "3月",
- "4月",
- "5月",
- "6月"
- ]
- }],
- "yAxis": [{
- "type": "value",
- "name": ""
- }],
- "series": [{
- "smooth": true,
- "name": "普通号",
- "type": "bar",
- "itemStyle": {
- "normal": {
- "lineStyle": {
- "shadowColor": "rgba(0,0,0,0.4)"
- }
- }
- },
- "data": [
- "13232",
- "26323",
- "25447",
- "21232",
- "22454",
- "22892"
- ]
- },
- {
- "smooth": true,
- "name": "专家号",
- "type": "bar",
- "itemStyle": {
- "normal": {
- "lineStyle": {
- "shadowColor": "rgba(0,0,0,0.4)"
- }
- }
- },
- "data": [
- "9232",
- "8323",
- "9247",
- "8232",
- "9454",
- "8892"
- ]
- },
- {
- "smooth": true,
- "name": "普通环比",
- "type": "line",
- "itemStyle": {
- "normal": {
- "lineStyle": {
- "shadowColor": "rgba(0,0,0,0.4)"
- }
- }
- },
- "data": [
- "1.5",
- "2.2",
- "2.3",
- "1.1",
- "1.3",
- "1.6"
- ]
- },
- {
- "smooth": true,
- "name": "专家环比",
- "type": "line",
- "itemStyle": {
- "normal": {
- "lineStyle": {
- "shadowColor": "rgba(0,0,0,0.4)"
- }
- }
- },
- "data": [
- "2.5",
- "3.2",
- "3.3",
- "2.1",
- "2.3",
- "2.6"
- ]
- }
- ]
- },
- "住院服务情况": [{
- "月份": "1",
- "住院总费用": "2548633",
- "住院总费用环比": "1.3",
- "住院次均费用": "256",
- "住院次均费用环比": "1.2"
- },
- {
- "月份": "2",
- "住院总费用": "3548645",
- "住院总费用环比": "2.3",
- "住院次均费用": "1276",
- "住院次均费用环比": "2.2"
- },
- {
- "月份": "3",
- "住院总费用": "2348156",
- "住院总费用环比": "2.3",
- "住院次均费用": "1296",
- "住院次均费用环比": "1.6"
- },
- {
- "月份": "4",
- "住院总费用": "3548562",
- "住院总费用环比": "1.5",
- "住院次均费用": "1223",
- "住院次均费用环比": "1.4"
- },
- {
- "月份": "5",
- "住院总费用": "2548243",
- "住院总费用环比": "2.3",
- "住院次均费用": "1276",
- "住院次均费用环比": "1.2"
- },
- {
- "月份": "6",
- "住院总费用": "3548623",
- "住院总费用环比": "2.3",
- "住院次均费用": "1226",
- "住院次均费用环比": "2.2"
- }
- ],
- "住院平均日数月趋势": {
- "title": {
- "text": "住院平均日数月趋势",
- "x": "center"
- },
- "tooltip": {
- "trigger": "axis"
- },
- "grid": {
- "x2": "80px",
- "y2": "50px",
- "x": "50px",
- "y": "40px"
- },
- "xAxis": [{
- "type": "category",
- "name": "",
- "data": [
- "1月",
- "2月",
- "3月",
- "4月",
- "5月",
- "6月"
- ]
- }],
- "yAxis": [{
- "type": "value",
- "name": ""
- }],
- "series": [{
- "smooth": true,
- "name": "住院平均床日数",
- "type": "bar",
- "itemStyle": {
- "normal": {
- "lineStyle": {
- "shadowColor": "rgba(0,0,0,0.4)"
- }
- }
- },
- "data": [
- "23.2",
- "46.1",
- "45.4",
- "41.2",
- "52.4",
- "42.4"
- ]
- },
- {
- "smooth": true,
- "name": "环比",
- "type": "line",
- "itemStyle": {
- "normal": {
- "lineStyle": {
- "shadowColor": "rgba(0,0,0,0.4)"
- }
- }
- },
- "data": [
- "1.5",
- "2.2",
- "2.3",
- "1.1",
- "1.3",
- "1.6"
- ]
- }
- ]
- }
- }
|