alert-data.js 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526
  1. var bigData = {
  2. "总人数": "252365",
  3. "新增人数": "252",
  4. "门诊人次": "180012",
  5. "住院人次": "72353",
  6. "全部": {
  7. "区县分布": {
  8. "title": {
  9. "text": "区县分布",
  10. "x": "center",
  11. "textStyle": {
  12. color: ['#b5e1fc']
  13. },
  14. "padding": [10, 0, 0, 0]
  15. },
  16. "tooltip": {
  17. "trigger": "axis"
  18. },
  19. grid: {
  20. top: 80,
  21. bottom: 30,
  22. left: 80
  23. },
  24. "yAxis": [{
  25. "type": "category",
  26. "name": "人次",
  27. "data": [
  28. "覃塘区",
  29. "港南区",
  30. "港北区",
  31. "平南县",
  32. "桂平市",
  33. ],
  34. axisPointer: {
  35. type: 'shadow'
  36. },
  37. axisTick: {
  38. show: false
  39. },
  40. axisLine: {
  41. lineStyle: {
  42. color: '#095f8e'
  43. }
  44. },
  45. axisLabel: {
  46. color: '#b5e1fc'
  47. },
  48. nameTextStyle: {
  49. color: '#b5e1fc'
  50. }
  51. }],
  52. "xAxis": [{
  53. "type": "value",
  54. axisPointer: {
  55. type: 'shadow'
  56. },
  57. axisTick: {
  58. show: false
  59. },
  60. axisLine: {
  61. lineStyle: {
  62. color: '#095f8e'
  63. }
  64. },
  65. axisLabel: {
  66. color: '#fff'
  67. },
  68. splitLine: {
  69. show: false // 不显示坐标轴刻度
  70. }
  71. }],
  72. "series": [{
  73. "smooth": true,
  74. "name": "区县分布",
  75. "type": "bar",
  76. barWidth: 20,
  77. "label": {
  78. show: false,
  79. position: "right"
  80. },
  81. "itemStyle": {
  82. "normal": {
  83. "lineStyle": {
  84. "shadowColor": "rgba(0,0,0,0.4)"
  85. },
  86. barBorderRadius: [0, 8, 8, 0],
  87. color: '#00e6f3'
  88. }
  89. },
  90. "data": [
  91. "12587",
  92. "25634",
  93. "26531",
  94. "74128",
  95. "113485",
  96. ]
  97. }, ]
  98. },
  99. "年龄段分布": {
  100. "title": {
  101. "text": "年龄段分布",
  102. "x": "center",
  103. "textStyle": {
  104. color: ['#b5e1fc']
  105. },
  106. "padding": [10, 0, 0, 0]
  107. },
  108. "tooltip": {
  109. "trigger": "item"
  110. },
  111. legend: {
  112. orient: 'vertical',
  113. data: ['0-6', '7-17', '18-40', '41-65', '> 65'],
  114. right: '15%',
  115. top: '25%',
  116. textStyle: {
  117. color: ['#b5e1fc']
  118. }
  119. },
  120. "series": [{
  121. "center": [
  122. "35%",
  123. "50%"
  124. ],
  125. radius: ['30%', '40%'],
  126. "name": "",
  127. "type": "pie",
  128. "itemStyle": {
  129. "normal": {
  130. "label": {
  131. "show": false
  132. },
  133. "labelLine": {
  134. "show": false
  135. }
  136. }
  137. },
  138. "data": [{
  139. "name": "0-6",
  140. "value": "0"
  141. },
  142. {
  143. "name": "7-17",
  144. "value": "2356"
  145. },
  146. {
  147. "name": "18-40",
  148. "value": "45362"
  149. },
  150. {
  151. "name": "41-65",
  152. "value": "165428"
  153. },
  154. {
  155. "name": "> 65",
  156. "value": "39219"
  157. }
  158. ]
  159. }]
  160. },
  161. "性别分布": {
  162. "title": {
  163. "text": "性别分布",
  164. "x": "center",
  165. "textStyle": {
  166. color: ['#b5e1fc']
  167. },
  168. "padding": [10, 0, 0, 0]
  169. },
  170. "tooltip": {
  171. "trigger": "item"
  172. },
  173. legend: {
  174. orient: 'vertical',
  175. // x: 'right',
  176. data: ['男', '女'],
  177. right: '25%',
  178. top: '40%',
  179. textStyle: {
  180. color: ['#b5e1fc']
  181. }
  182. },
  183. "series": [{
  184. "center": [
  185. "35%",
  186. "50%"
  187. ],
  188. radius: ['30%', '40%'],
  189. "name": "",
  190. "type": "pie",
  191. "itemStyle": {
  192. "normal": {
  193. "label": {
  194. "show": false
  195. },
  196. "labelLine": {
  197. "show": false
  198. }
  199. }
  200. },
  201. "data": [{
  202. "name": "男",
  203. "value": "123258"
  204. },
  205. {
  206. "name": "女",
  207. "value": "129107"
  208. }
  209. ]
  210. }]
  211. },
  212. "并发症": {
  213. "title": {
  214. "text": "并发症排行",
  215. "x": "center",
  216. "textStyle": {
  217. color: ['#b5e1fc']
  218. },
  219. "padding": [10, 0, 0, 0]
  220. },
  221. "tooltip": {
  222. "trigger": "axis"
  223. },
  224. grid: {
  225. top: 40,
  226. bottom: 30,
  227. left: 80
  228. },
  229. "yAxis": [{
  230. "type": "category",
  231. "name": "",
  232. "data": [
  233. "眼底病变",
  234. "血管病变",
  235. "肾病",
  236. "脑血栓",
  237. "冠心病",
  238. ],
  239. axisPointer: {
  240. type: 'shadow'
  241. },
  242. axisTick: {
  243. show: false
  244. },
  245. axisLine: {
  246. lineStyle: {
  247. color: '#095f8e'
  248. }
  249. },
  250. axisLabel: {
  251. color: '#b5e1fc'
  252. },
  253. nameTextStyle: {
  254. color: '#b5e1fc'
  255. }
  256. }],
  257. "xAxis": [{
  258. "type": "value",
  259. axisPointer: {
  260. type: 'shadow'
  261. },
  262. axisTick: {
  263. show: false
  264. },
  265. axisLine: {
  266. lineStyle: {
  267. color: '#095f8e'
  268. }
  269. },
  270. axisLabel: {
  271. color: '#fff'
  272. },
  273. splitLine: {
  274. show: false // 不显示坐标轴刻度
  275. }
  276. }],
  277. "series": [{
  278. "smooth": true,
  279. "name": "并发症排行",
  280. "type": "bar",
  281. barWidth: 20,
  282. "label": {
  283. show: false,
  284. position: "right"
  285. },
  286. "itemStyle": {
  287. "normal": {
  288. "lineStyle": {
  289. "shadowColor": "rgba(0,0,0,0.4)"
  290. },
  291. barBorderRadius: [0, 8, 8, 0],
  292. color: '#00e6f3'
  293. }
  294. },
  295. "data": [
  296. "1243",
  297. "1378",
  298. "1845",
  299. "2145",
  300. "2360",
  301. ]
  302. }, ]
  303. },
  304. "新增患者趋势": {
  305. "日": {
  306. "title": {
  307. "text": "新增患者趋势",
  308. "x": "center",
  309. textStyle: {
  310. color: '#b5e1fc',
  311. fontSize: 16,
  312. fontWeight: 'bold'
  313. }
  314. },
  315. tooltip: {
  316. trigger: 'axis',
  317. axisPointer: {
  318. type: 'cross',
  319. crossStyle: {
  320. color: '#fff'
  321. }
  322. }
  323. },
  324. "grid": {
  325. top: '90',
  326. left: '60'
  327. },
  328. legend: {
  329. data: ['新增人次', '环比'],
  330. textStyle: {
  331. color: '#b5e1fc'
  332. },
  333. top: '40'
  334. },
  335. xAxis: [{
  336. type: 'category',
  337. "data": [
  338. "2018-07-01",
  339. "2018-07-02",
  340. "2018-07-03",
  341. "2018-07-04",
  342. "2018-07-05",
  343. "2018-07-06",
  344. "2018-07-07",
  345. "2018-07-08"
  346. ],
  347. axisPointer: {
  348. type: 'shadow'
  349. },
  350. axisTick: {
  351. show: false
  352. },
  353. axisLine: {
  354. lineStyle: {
  355. color: '#095f8e'
  356. }
  357. },
  358. axisLabel: {
  359. color: '#b5e1fc'
  360. }
  361. }],
  362. yAxis: [{
  363. type: 'value',
  364. name: '新增人次',
  365. max: 10,
  366. nameTextStyle: {
  367. color: '#b5e1fc' // 坐标轴名称颜色
  368. },
  369. splitLine: {
  370. show: false
  371. },
  372. axisLine: {
  373. lineStyle: {
  374. color: '#095f8e'
  375. }
  376. },
  377. axisLabel: {
  378. color: '#b5e1fc'
  379. }
  380. },
  381. {
  382. type: 'value',
  383. name: '环比',
  384. min: 0,
  385. max: 10,
  386. nameTextStyle: {
  387. color: '#b5e1fc' // 坐标轴名称颜色
  388. },
  389. splitLine: {
  390. show: false // 不显示坐标轴刻度
  391. },
  392. axisLine: {
  393. lineStyle: {
  394. color: '#095f8e' // 坐标轴轴线颜色
  395. }
  396. },
  397. axisLabel: {
  398. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  399. }
  400. }
  401. ],
  402. series: [{
  403. name: '新增人次',
  404. type: 'bar',
  405. "data": [
  406. "6",
  407. "7",
  408. "5",
  409. "5",
  410. "6",
  411. "7",
  412. "5",
  413. "3"
  414. ],
  415. barWidth: 20,
  416. label: {
  417. normal: {
  418. show: true,
  419. position: 'top', // 在柱状图上方显示
  420. color: '#fff' // 柱状图上方显示的数值颜色
  421. }
  422. },
  423. itemStyle: {
  424. barBorderRadius: [8, 8, 0, 0],
  425. color: '#00e6f3'
  426. }
  427. },
  428. {
  429. name: '环比',
  430. type: 'line',
  431. yAxisIndex: 1,
  432. "data": [
  433. "5",
  434. "7",
  435. "7",
  436. "9",
  437. "5",
  438. "4",
  439. "5",
  440. "3"
  441. ],
  442. itemStyle: {
  443. color: '#03fa6d'
  444. }
  445. }
  446. ]
  447. },
  448. "月": {
  449. "title": {
  450. "text": "新增患者趋势",
  451. "x": "center",
  452. textStyle: {
  453. color: '#b5e1fc',
  454. fontSize: 16,
  455. fontWeight: 'bold'
  456. }
  457. },
  458. tooltip: {
  459. trigger: 'axis',
  460. axisPointer: {
  461. type: 'cross',
  462. crossStyle: {
  463. color: '#fff'
  464. }
  465. }
  466. },
  467. "grid": {
  468. top: '50',
  469. left: '60'
  470. },
  471. legend: {
  472. data: ['新增人次', '环比'],
  473. textStyle: {
  474. color: '#b5e1fc'
  475. },
  476. top: '40'
  477. },
  478. xAxis: [{
  479. type: 'category',
  480. "data": [
  481. "2018-01",
  482. "2018-02",
  483. "2018-03",
  484. "2018-04",
  485. "2018-05",
  486. "2018-06"
  487. ],
  488. axisPointer: {
  489. type: 'shadow'
  490. },
  491. axisTick: {
  492. show: false
  493. },
  494. axisLine: {
  495. lineStyle: {
  496. color: '#095f8e'
  497. }
  498. },
  499. axisLabel: {
  500. color: '#b5e1fc'
  501. }
  502. }],
  503. yAxis: [{
  504. type: 'value',
  505. name: '新增人次',
  506. max: 10,
  507. nameTextStyle: {
  508. color: '#b5e1fc' // 坐标轴名称颜色
  509. },
  510. splitLine: {
  511. show: false
  512. },
  513. axisLine: {
  514. lineStyle: {
  515. color: '#095f8e'
  516. }
  517. },
  518. axisLabel: {
  519. color: '#b5e1fc'
  520. }
  521. },
  522. {
  523. type: 'value',
  524. name: '环比',
  525. min: 0,
  526. max: 50,
  527. nameTextStyle: {
  528. color: '#b5e1fc' // 坐标轴名称颜色
  529. },
  530. splitLine: {
  531. show: false // 不显示坐标轴刻度
  532. },
  533. axisLine: {
  534. lineStyle: {
  535. color: '#095f8e' // 坐标轴轴线颜色
  536. }
  537. },
  538. axisLabel: {
  539. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  540. }
  541. }
  542. ],
  543. series: [{
  544. name: '新增人次',
  545. type: 'bar',
  546. "data": [
  547. "6",
  548. "7",
  549. "5",
  550. "5",
  551. "6",
  552. "7"
  553. ],
  554. barWidth: 20,
  555. label: {
  556. normal: {
  557. show: true,
  558. position: 'top', // 在柱状图上方显示
  559. color: '#fff' // 柱状图上方显示的数值颜色
  560. }
  561. },
  562. itemStyle: {
  563. barBorderRadius: [8, 8, 0, 0],
  564. color: '#00e6f3'
  565. }
  566. },
  567. {
  568. name: '环比',
  569. type: 'line',
  570. yAxisIndex: 1,
  571. "data": [
  572. "35",
  573. "37",
  574. "37",
  575. "39",
  576. "35",
  577. "34"
  578. ],
  579. itemStyle: {
  580. color: '#03fa6d'
  581. }
  582. }
  583. ]
  584. },
  585. "季": {
  586. "title": {
  587. "text": "新增患者趋势",
  588. "x": "center",
  589. textStyle: {
  590. color: '#b5e1fc',
  591. fontSize: 16,
  592. fontWeight: 'bold'
  593. }
  594. },
  595. tooltip: {
  596. trigger: 'axis',
  597. axisPointer: {
  598. type: 'cross',
  599. crossStyle: {
  600. color: '#fff'
  601. }
  602. }
  603. },
  604. "grid": {
  605. top: '50',
  606. left: '60'
  607. },
  608. legend: {
  609. data: ['新增人次', '环比'],
  610. textStyle: {
  611. color: '#b5e1fc'
  612. },
  613. top: '40'
  614. },
  615. xAxis: [{
  616. type: 'category',
  617. "data": [
  618. "2017季度3",
  619. "2017季度4",
  620. "2018季度1",
  621. "2018季度2"
  622. ],
  623. axisPointer: {
  624. type: 'shadow'
  625. },
  626. axisTick: {
  627. show: false
  628. },
  629. axisLine: {
  630. lineStyle: {
  631. color: '#095f8e'
  632. }
  633. },
  634. axisLabel: {
  635. color: '#b5e1fc'
  636. }
  637. }],
  638. yAxis: [{
  639. type: 'value',
  640. name: '新增人次',
  641. max: 20,
  642. nameTextStyle: {
  643. color: '#b5e1fc' // 坐标轴名称颜色
  644. },
  645. splitLine: {
  646. show: false
  647. },
  648. axisLine: {
  649. lineStyle: {
  650. color: '#095f8e'
  651. }
  652. },
  653. axisLabel: {
  654. color: '#b5e1fc'
  655. }
  656. },
  657. {
  658. type: 'value',
  659. name: '环比',
  660. min: 0,
  661. max: 10,
  662. nameTextStyle: {
  663. color: '#b5e1fc' // 坐标轴名称颜色
  664. },
  665. splitLine: {
  666. show: false // 不显示坐标轴刻度
  667. },
  668. axisLine: {
  669. lineStyle: {
  670. color: '#095f8e' // 坐标轴轴线颜色
  671. }
  672. },
  673. axisLabel: {
  674. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  675. }
  676. }
  677. ],
  678. series: [{
  679. name: '新增人次',
  680. type: 'bar',
  681. "data": [
  682. "16",
  683. "17",
  684. "15",
  685. "9"
  686. ],
  687. barWidth: 20,
  688. label: {
  689. normal: {
  690. show: true,
  691. position: 'top', // 在柱状图上方显示
  692. color: '#fff' // 柱状图上方显示的数值颜色
  693. }
  694. },
  695. itemStyle: {
  696. barBorderRadius: [8, 8, 0, 0],
  697. color: '#00e6f3'
  698. }
  699. },
  700. {
  701. name: '环比',
  702. type: 'line',
  703. yAxisIndex: 1,
  704. "data": [
  705. "5",
  706. "7",
  707. "7",
  708. "9"
  709. ],
  710. itemStyle: {
  711. color: '#03fa6d'
  712. }
  713. }
  714. ]
  715. },
  716. "年": {
  717. "title": {
  718. "text": "新增患者趋势",
  719. "x": "center",
  720. textStyle: {
  721. color: '#b5e1fc',
  722. fontSize: 16,
  723. fontWeight: 'bold'
  724. }
  725. },
  726. tooltip: {
  727. trigger: 'axis',
  728. axisPointer: {
  729. type: 'cross',
  730. crossStyle: {
  731. color: '#fff'
  732. }
  733. }
  734. },
  735. "grid": {
  736. top: '50',
  737. left: '60'
  738. },
  739. legend: {
  740. data: ['新增人次', '环比'],
  741. textStyle: {
  742. color: '#b5e1fc'
  743. },
  744. top: '40'
  745. },
  746. xAxis: [{
  747. type: 'category',
  748. "data": [
  749. "2016",
  750. "2017",
  751. "2018"
  752. ],
  753. axisPointer: {
  754. type: 'shadow'
  755. },
  756. axisTick: {
  757. show: false
  758. },
  759. axisLine: {
  760. lineStyle: {
  761. color: '#095f8e'
  762. }
  763. },
  764. axisLabel: {
  765. color: '#b5e1fc'
  766. }
  767. }],
  768. yAxis: [{
  769. type: 'value',
  770. name: '新增人次',
  771. max: 400,
  772. nameTextStyle: {
  773. color: '#b5e1fc' // 坐标轴名称颜色
  774. },
  775. splitLine: {
  776. show: false
  777. },
  778. axisLine: {
  779. lineStyle: {
  780. color: '#095f8e'
  781. }
  782. },
  783. axisLabel: {
  784. color: '#b5e1fc'
  785. }
  786. },
  787. {
  788. type: 'value',
  789. name: '环比',
  790. min: 0,
  791. max: 15,
  792. nameTextStyle: {
  793. color: '#b5e1fc' // 坐标轴名称颜色
  794. },
  795. splitLine: {
  796. show: false // 不显示坐标轴刻度
  797. },
  798. axisLine: {
  799. lineStyle: {
  800. color: '#095f8e' // 坐标轴轴线颜色
  801. }
  802. },
  803. axisLabel: {
  804. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  805. }
  806. }
  807. ],
  808. series: [{
  809. name: '新增人次',
  810. type: 'bar',
  811. "data": [
  812. "298",
  813. "356",
  814. "252"
  815. ],
  816. barWidth: 20,
  817. label: {
  818. normal: {
  819. show: true,
  820. position: 'top', // 在柱状图上方显示
  821. color: '#fff' // 柱状图上方显示的数值颜色
  822. }
  823. },
  824. itemStyle: {
  825. barBorderRadius: [8, 8, 0, 0],
  826. color: '#00e6f3'
  827. }
  828. },
  829. {
  830. name: '环比',
  831. type: 'line',
  832. yAxisIndex: 1,
  833. "data": [
  834. "9",
  835. "12",
  836. "8"
  837. ],
  838. itemStyle: {
  839. color: '#03fa6d'
  840. }
  841. }
  842. ]
  843. }
  844. }
  845. },
  846. "门诊": {
  847. "区县分布": {
  848. "title": {
  849. "text": "区县分布",
  850. "x": "center",
  851. "textStyle": {
  852. color: ['#b5e1fc']
  853. },
  854. "padding": [10, 0, 0, 0]
  855. },
  856. "tooltip": {
  857. "trigger": "axis"
  858. },
  859. grid: {
  860. top: 80,
  861. bottom: 30,
  862. left: 80
  863. },
  864. "yAxis": [{
  865. "type": "category",
  866. "name": "人次",
  867. "data": [
  868. "覃塘区",
  869. "港南区",
  870. "港北区",
  871. "平南县",
  872. "桂平市",
  873. ],
  874. axisPointer: {
  875. type: 'shadow'
  876. },
  877. axisTick: {
  878. show: false
  879. },
  880. axisLine: {
  881. lineStyle: {
  882. color: '#095f8e'
  883. }
  884. },
  885. axisLabel: {
  886. color: '#b5e1fc'
  887. },
  888. nameTextStyle: {
  889. color: '#b5e1fc'
  890. }
  891. }],
  892. "xAxis": [{
  893. "type": "value",
  894. axisPointer: {
  895. type: 'shadow'
  896. },
  897. axisTick: {
  898. show: false
  899. },
  900. axisLine: {
  901. lineStyle: {
  902. color: '#095f8e'
  903. }
  904. },
  905. axisLabel: {
  906. color: '#fff'
  907. },
  908. splitLine: {
  909. show: false // 不显示坐标轴刻度
  910. }
  911. }],
  912. "series": [{
  913. "smooth": true,
  914. "name": "区县分布",
  915. "type": "bar",
  916. barWidth: 20,
  917. "label": {
  918. show: false,
  919. position: "right"
  920. },
  921. "itemStyle": {
  922. "normal": {
  923. "lineStyle": {
  924. "shadowColor": "rgba(0,0,0,0.4)"
  925. },
  926. barBorderRadius: [0, 8, 8, 0],
  927. color: '#00e6f3'
  928. }
  929. },
  930. "data": [
  931. "7498",
  932. "20362",
  933. "12475",
  934. "52163",
  935. "87514",
  936. ]
  937. }, ]
  938. },
  939. "年龄段分布": {
  940. "title": {
  941. "text": "年龄段分布",
  942. "x": "center",
  943. "textStyle": {
  944. color: ['#b5e1fc']
  945. },
  946. "padding": [10, 0, 0, 0]
  947. },
  948. "tooltip": {
  949. "trigger": "item"
  950. },
  951. legend: {
  952. orient: 'vertical',
  953. data: ['0-6', '7-17', '18-40', '41-65', '> 65'],
  954. right: '15%',
  955. top: '25%',
  956. textStyle: {
  957. color: ['#b5e1fc']
  958. }
  959. },
  960. "series": [{
  961. "center": [
  962. "35%",
  963. "50%"
  964. ],
  965. radius: ['30%', '40%'],
  966. "name": "",
  967. "type": "pie",
  968. "itemStyle": {
  969. "normal": {
  970. "label": {
  971. "show": false
  972. },
  973. "labelLine": {
  974. "show": false
  975. }
  976. }
  977. },
  978. "data": [{
  979. "name": "0-6",
  980. "value": "0"
  981. },
  982. {
  983. "name": "7-17",
  984. "value": "1074"
  985. },
  986. {
  987. "name": "18-40",
  988. "value": "26475"
  989. },
  990. {
  991. "name": "41-65",
  992. "value": "95478"
  993. },
  994. {
  995. "name": "> 65",
  996. "value": "17565"
  997. }
  998. ]
  999. }]
  1000. },
  1001. "性别分布": {
  1002. "title": {
  1003. "text": "性别分布",
  1004. "x": "center",
  1005. "textStyle": {
  1006. color: ['#b5e1fc']
  1007. },
  1008. "padding": [10, 0, 0, 0]
  1009. },
  1010. "tooltip": {
  1011. "trigger": "item"
  1012. },
  1013. legend: {
  1014. orient: 'vertical',
  1015. // x: 'right',
  1016. data: ['男', '女'],
  1017. right: '25%',
  1018. top: '40%',
  1019. textStyle: {
  1020. color: ['#b5e1fc']
  1021. }
  1022. },
  1023. "series": [{
  1024. "center": [
  1025. "35%",
  1026. "50%"
  1027. ],
  1028. radius: ['30%', '40%'],
  1029. "name": "",
  1030. "type": "pie",
  1031. "itemStyle": {
  1032. "normal": {
  1033. "label": {
  1034. "show": false
  1035. },
  1036. "labelLine": {
  1037. "show": false
  1038. }
  1039. }
  1040. },
  1041. "data": [{
  1042. "name": "男",
  1043. "value": "76728"
  1044. },
  1045. {
  1046. "name": "女",
  1047. "value": "103654"
  1048. }
  1049. ]
  1050. }]
  1051. },
  1052. "并发症": {
  1053. "title": {
  1054. "text": "并发症排行",
  1055. "x": "center",
  1056. "textStyle": {
  1057. color: ['#b5e1fc']
  1058. },
  1059. "padding": [10, 0, 0, 0]
  1060. },
  1061. "tooltip": {
  1062. "trigger": "axis"
  1063. },
  1064. grid: {
  1065. top: 40,
  1066. bottom: 30,
  1067. left: 80
  1068. },
  1069. "yAxis": [{
  1070. "type": "category",
  1071. "name": "",
  1072. "data": [
  1073. "眼底病变",
  1074. "血管病变",
  1075. "肾病",
  1076. "脑血栓",
  1077. "冠心病",
  1078. ],
  1079. axisPointer: {
  1080. type: 'shadow'
  1081. },
  1082. axisTick: {
  1083. show: false
  1084. },
  1085. axisLine: {
  1086. lineStyle: {
  1087. color: '#095f8e'
  1088. }
  1089. },
  1090. axisLabel: {
  1091. color: '#b5e1fc'
  1092. },
  1093. nameTextStyle: {
  1094. color: '#b5e1fc'
  1095. }
  1096. }],
  1097. "xAxis": [{
  1098. "type": "value",
  1099. axisPointer: {
  1100. type: 'shadow'
  1101. },
  1102. axisTick: {
  1103. show: false
  1104. },
  1105. axisLine: {
  1106. lineStyle: {
  1107. color: '#095f8e'
  1108. }
  1109. },
  1110. axisLabel: {
  1111. color: '#fff'
  1112. },
  1113. splitLine: {
  1114. show: false // 不显示坐标轴刻度
  1115. }
  1116. }],
  1117. "series": [{
  1118. "smooth": true,
  1119. "name": "并发症排行",
  1120. "type": "bar",
  1121. barWidth: 20,
  1122. "label": {
  1123. show: false,
  1124. position: "right"
  1125. },
  1126. "itemStyle": {
  1127. "normal": {
  1128. "lineStyle": {
  1129. "shadowColor": "rgba(0,0,0,0.4)"
  1130. },
  1131. barBorderRadius: [0, 8, 8, 0],
  1132. color: '#00e6f3'
  1133. }
  1134. },
  1135. "data": [
  1136. "800",
  1137. "1000",
  1138. "1100",
  1139. "1100",
  1140. "1200",
  1141. ]
  1142. }, ]
  1143. },
  1144. "新增患者趋势": {
  1145. "日": {
  1146. "title": {
  1147. "text": "新增患者趋势",
  1148. "x": "center",
  1149. textStyle: {
  1150. color: '#b5e1fc',
  1151. fontSize: 16,
  1152. fontWeight: 'bold'
  1153. }
  1154. },
  1155. tooltip: {
  1156. trigger: 'axis',
  1157. axisPointer: {
  1158. type: 'cross',
  1159. crossStyle: {
  1160. color: '#fff'
  1161. }
  1162. }
  1163. },
  1164. "grid": {
  1165. top: '90',
  1166. left: '60'
  1167. },
  1168. legend: {
  1169. data: ['新增人次', '环比'],
  1170. textStyle: {
  1171. color: '#b5e1fc'
  1172. },
  1173. top: '40'
  1174. },
  1175. xAxis: [{
  1176. type: 'category',
  1177. "data": [
  1178. "2018-07-01",
  1179. "2018-07-02",
  1180. "2018-07-03",
  1181. "2018-07-04",
  1182. "2018-07-05",
  1183. "2018-07-06",
  1184. "2018-07-07",
  1185. "2018-07-08"
  1186. ],
  1187. axisPointer: {
  1188. type: 'shadow'
  1189. },
  1190. axisTick: {
  1191. show: false
  1192. },
  1193. axisLine: {
  1194. lineStyle: {
  1195. color: '#095f8e'
  1196. }
  1197. },
  1198. axisLabel: {
  1199. color: '#b5e1fc'
  1200. }
  1201. }],
  1202. yAxis: [{
  1203. type: 'value',
  1204. name: '新增人次',
  1205. max: 10,
  1206. nameTextStyle: {
  1207. color: '#b5e1fc' // 坐标轴名称颜色
  1208. },
  1209. splitLine: {
  1210. show: false
  1211. },
  1212. axisLine: {
  1213. lineStyle: {
  1214. color: '#095f8e'
  1215. }
  1216. },
  1217. axisLabel: {
  1218. color: '#b5e1fc'
  1219. }
  1220. },
  1221. {
  1222. type: 'value',
  1223. name: '环比',
  1224. min: 0,
  1225. max: 10,
  1226. nameTextStyle: {
  1227. color: '#b5e1fc' // 坐标轴名称颜色
  1228. },
  1229. splitLine: {
  1230. show: false // 不显示坐标轴刻度
  1231. },
  1232. axisLine: {
  1233. lineStyle: {
  1234. color: '#095f8e' // 坐标轴轴线颜色
  1235. }
  1236. },
  1237. axisLabel: {
  1238. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  1239. }
  1240. }
  1241. ],
  1242. series: [{
  1243. name: '新增人次',
  1244. type: 'bar',
  1245. "data": [
  1246. "6",
  1247. "7",
  1248. "5",
  1249. "5",
  1250. "6",
  1251. "7",
  1252. "5",
  1253. "3"
  1254. ],
  1255. barWidth: 20,
  1256. label: {
  1257. normal: {
  1258. show: true,
  1259. position: 'top', // 在柱状图上方显示
  1260. color: '#fff' // 柱状图上方显示的数值颜色
  1261. }
  1262. },
  1263. itemStyle: {
  1264. barBorderRadius: [8, 8, 0, 0],
  1265. color: '#00e6f3'
  1266. }
  1267. },
  1268. {
  1269. name: '环比',
  1270. type: 'line',
  1271. yAxisIndex: 1,
  1272. "data": [
  1273. "3",
  1274. "4",
  1275. "2",
  1276. "4",
  1277. "3",
  1278. "3",
  1279. "2",
  1280. "2"
  1281. ],
  1282. itemStyle: {
  1283. color: '#03fa6d'
  1284. }
  1285. }
  1286. ]
  1287. },
  1288. "月": {
  1289. "title": {
  1290. "text": "新增患者趋势",
  1291. "x": "center",
  1292. textStyle: {
  1293. color: '#b5e1fc',
  1294. fontSize: 16,
  1295. fontWeight: 'bold'
  1296. }
  1297. },
  1298. tooltip: {
  1299. trigger: 'axis',
  1300. axisPointer: {
  1301. type: 'cross',
  1302. crossStyle: {
  1303. color: '#fff'
  1304. }
  1305. }
  1306. },
  1307. "grid": {
  1308. top: '50',
  1309. left: '60'
  1310. },
  1311. legend: {
  1312. data: ['新增人次', '环比'],
  1313. textStyle: {
  1314. color: '#b5e1fc'
  1315. },
  1316. top: '40'
  1317. },
  1318. xAxis: [{
  1319. type: 'category',
  1320. "data": [
  1321. "2018-01",
  1322. "2018-02",
  1323. "2018-03",
  1324. "2018-04",
  1325. "2018-05",
  1326. "2018-06"
  1327. ],
  1328. axisPointer: {
  1329. type: 'shadow'
  1330. },
  1331. axisTick: {
  1332. show: false
  1333. },
  1334. axisLine: {
  1335. lineStyle: {
  1336. color: '#095f8e'
  1337. }
  1338. },
  1339. axisLabel: {
  1340. color: '#b5e1fc'
  1341. }
  1342. }],
  1343. yAxis: [{
  1344. type: 'value',
  1345. name: '新增人次',
  1346. max: 10,
  1347. nameTextStyle: {
  1348. color: '#b5e1fc' // 坐标轴名称颜色
  1349. },
  1350. splitLine: {
  1351. show: false
  1352. },
  1353. axisLine: {
  1354. lineStyle: {
  1355. color: '#095f8e'
  1356. }
  1357. },
  1358. axisLabel: {
  1359. color: '#b5e1fc'
  1360. }
  1361. },
  1362. {
  1363. type: 'value',
  1364. name: '环比',
  1365. min: 0,
  1366. max: 10,
  1367. nameTextStyle: {
  1368. color: '#b5e1fc' // 坐标轴名称颜色
  1369. },
  1370. splitLine: {
  1371. show: false // 不显示坐标轴刻度
  1372. },
  1373. axisLine: {
  1374. lineStyle: {
  1375. color: '#095f8e' // 坐标轴轴线颜色
  1376. }
  1377. },
  1378. axisLabel: {
  1379. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  1380. }
  1381. }
  1382. ],
  1383. series: [{
  1384. name: '新增人次',
  1385. type: 'bar',
  1386. "data": [
  1387. "6",
  1388. "7",
  1389. "5",
  1390. "5",
  1391. "6",
  1392. "7"
  1393. ],
  1394. barWidth: 20,
  1395. label: {
  1396. normal: {
  1397. show: true,
  1398. position: 'top', // 在柱状图上方显示
  1399. color: '#fff' // 柱状图上方显示的数值颜色
  1400. }
  1401. },
  1402. itemStyle: {
  1403. barBorderRadius: [8, 8, 0, 0],
  1404. color: '#00e6f3'
  1405. }
  1406. },
  1407. {
  1408. name: '环比',
  1409. type: 'line',
  1410. yAxisIndex: 1,
  1411. "data": [
  1412. "5",
  1413. "7",
  1414. "7",
  1415. "6",
  1416. "5",
  1417. "4"
  1418. ],
  1419. itemStyle: {
  1420. color: '#03fa6d'
  1421. }
  1422. }
  1423. ]
  1424. },
  1425. "季": {
  1426. "title": {
  1427. "text": "新增患者趋势",
  1428. "x": "center",
  1429. textStyle: {
  1430. color: '#b5e1fc',
  1431. fontSize: 16,
  1432. fontWeight: 'bold'
  1433. }
  1434. },
  1435. tooltip: {
  1436. trigger: 'axis',
  1437. axisPointer: {
  1438. type: 'cross',
  1439. crossStyle: {
  1440. color: '#fff'
  1441. }
  1442. }
  1443. },
  1444. "grid": {
  1445. top: '50',
  1446. left: '60'
  1447. },
  1448. legend: {
  1449. data: ['新增人次', '环比'],
  1450. textStyle: {
  1451. color: '#b5e1fc'
  1452. },
  1453. top: '40'
  1454. },
  1455. xAxis: [{
  1456. type: 'category',
  1457. "data": [
  1458. "2017季度3",
  1459. "2017季度4",
  1460. "2018季度1",
  1461. "2018季度2"
  1462. ],
  1463. axisPointer: {
  1464. type: 'shadow'
  1465. },
  1466. axisTick: {
  1467. show: false
  1468. },
  1469. axisLine: {
  1470. lineStyle: {
  1471. color: '#095f8e'
  1472. }
  1473. },
  1474. axisLabel: {
  1475. color: '#b5e1fc'
  1476. }
  1477. }],
  1478. yAxis: [{
  1479. type: 'value',
  1480. name: '新增人次',
  1481. max: 10,
  1482. nameTextStyle: {
  1483. color: '#b5e1fc' // 坐标轴名称颜色
  1484. },
  1485. splitLine: {
  1486. show: false
  1487. },
  1488. axisLine: {
  1489. lineStyle: {
  1490. color: '#095f8e'
  1491. }
  1492. },
  1493. axisLabel: {
  1494. color: '#b5e1fc'
  1495. }
  1496. },
  1497. {
  1498. type: 'value',
  1499. name: '环比',
  1500. min: 0,
  1501. max: 10,
  1502. nameTextStyle: {
  1503. color: '#b5e1fc' // 坐标轴名称颜色
  1504. },
  1505. splitLine: {
  1506. show: false // 不显示坐标轴刻度
  1507. },
  1508. axisLine: {
  1509. lineStyle: {
  1510. color: '#095f8e' // 坐标轴轴线颜色
  1511. }
  1512. },
  1513. axisLabel: {
  1514. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  1515. }
  1516. }
  1517. ],
  1518. series: [{
  1519. name: '新增人次',
  1520. type: 'bar',
  1521. "data": [
  1522. "6",
  1523. "7",
  1524. "5",
  1525. "5"
  1526. ],
  1527. barWidth: 20,
  1528. label: {
  1529. normal: {
  1530. show: true,
  1531. position: 'top', // 在柱状图上方显示
  1532. color: '#fff' // 柱状图上方显示的数值颜色
  1533. }
  1534. },
  1535. itemStyle: {
  1536. barBorderRadius: [8, 8, 0, 0],
  1537. color: '#00e6f3'
  1538. }
  1539. },
  1540. {
  1541. name: '环比',
  1542. type: 'line',
  1543. yAxisIndex: 1,
  1544. "data": [
  1545. "5",
  1546. "7",
  1547. "7",
  1548. "9"
  1549. ],
  1550. itemStyle: {
  1551. color: '#03fa6d'
  1552. }
  1553. }
  1554. ]
  1555. },
  1556. "年": {
  1557. "title": {
  1558. "text": "新增患者趋势",
  1559. "x": "center",
  1560. textStyle: {
  1561. color: '#b5e1fc',
  1562. fontSize: 16,
  1563. fontWeight: 'bold'
  1564. }
  1565. },
  1566. tooltip: {
  1567. trigger: 'axis',
  1568. axisPointer: {
  1569. type: 'cross',
  1570. crossStyle: {
  1571. color: '#fff'
  1572. }
  1573. }
  1574. },
  1575. "grid": {
  1576. top: '50',
  1577. left: '60'
  1578. },
  1579. legend: {
  1580. data: ['新增人次', '环比'],
  1581. textStyle: {
  1582. color: '#b5e1fc'
  1583. },
  1584. top: '40'
  1585. },
  1586. xAxis: [{
  1587. type: 'category',
  1588. "data": [
  1589. "2016",
  1590. "2017",
  1591. "2018"
  1592. ],
  1593. axisPointer: {
  1594. type: 'shadow'
  1595. },
  1596. axisTick: {
  1597. show: false
  1598. },
  1599. axisLine: {
  1600. lineStyle: {
  1601. color: '#095f8e'
  1602. }
  1603. },
  1604. axisLabel: {
  1605. color: '#b5e1fc'
  1606. }
  1607. }],
  1608. yAxis: [{
  1609. type: 'value',
  1610. name: '新增人次',
  1611. max: 200,
  1612. nameTextStyle: {
  1613. color: '#b5e1fc' // 坐标轴名称颜色
  1614. },
  1615. splitLine: {
  1616. show: false
  1617. },
  1618. axisLine: {
  1619. lineStyle: {
  1620. color: '#095f8e'
  1621. }
  1622. },
  1623. axisLabel: {
  1624. color: '#b5e1fc'
  1625. }
  1626. },
  1627. {
  1628. type: 'value',
  1629. name: '环比',
  1630. min: 0,
  1631. max: 50,
  1632. nameTextStyle: {
  1633. color: '#b5e1fc' // 坐标轴名称颜色
  1634. },
  1635. splitLine: {
  1636. show: false // 不显示坐标轴刻度
  1637. },
  1638. axisLine: {
  1639. lineStyle: {
  1640. color: '#095f8e' // 坐标轴轴线颜色
  1641. }
  1642. },
  1643. axisLabel: {
  1644. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  1645. }
  1646. }
  1647. ],
  1648. series: [{
  1649. name: '新增人次',
  1650. type: 'bar',
  1651. "data": [
  1652. "163",
  1653. "198",
  1654. "136"
  1655. ],
  1656. barWidth: 20,
  1657. label: {
  1658. normal: {
  1659. show: true,
  1660. position: 'top', // 在柱状图上方显示
  1661. color: '#fff' // 柱状图上方显示的数值颜色
  1662. }
  1663. },
  1664. itemStyle: {
  1665. barBorderRadius: [8, 8, 0, 0],
  1666. color: '#00e6f3'
  1667. }
  1668. },
  1669. {
  1670. name: '环比',
  1671. type: 'line',
  1672. yAxisIndex: 1,
  1673. "data": [
  1674. "35",
  1675. "39",
  1676. "25"
  1677. ],
  1678. itemStyle: {
  1679. color: '#03fa6d'
  1680. }
  1681. }
  1682. ]
  1683. }
  1684. }
  1685. },
  1686. "住院": {
  1687. "区县分布": {
  1688. "title": {
  1689. "text": "区县分布",
  1690. "x": "center",
  1691. "textStyle": {
  1692. color: ['#b5e1fc']
  1693. },
  1694. "padding": [10, 0, 0, 0]
  1695. },
  1696. "tooltip": {
  1697. "trigger": "axis"
  1698. },
  1699. grid: {
  1700. top: 80,
  1701. bottom: 30,
  1702. left: 80
  1703. },
  1704. "yAxis": [{
  1705. "type": "category",
  1706. "name": "人次",
  1707. "data": [
  1708. "覃塘区",
  1709. "港南区",
  1710. "港北区",
  1711. "平南县",
  1712. "桂平市",
  1713. ],
  1714. axisPointer: {
  1715. type: 'shadow'
  1716. },
  1717. axisTick: {
  1718. show: false
  1719. },
  1720. axisLine: {
  1721. lineStyle: {
  1722. color: '#095f8e'
  1723. }
  1724. },
  1725. axisLabel: {
  1726. color: '#b5e1fc'
  1727. },
  1728. nameTextStyle: {
  1729. color: '#b5e1fc'
  1730. }
  1731. }],
  1732. "xAxis": [{
  1733. "type": "value",
  1734. axisPointer: {
  1735. type: 'shadow'
  1736. },
  1737. axisTick: {
  1738. show: false
  1739. },
  1740. axisLine: {
  1741. lineStyle: {
  1742. color: '#095f8e'
  1743. }
  1744. },
  1745. axisLabel: {
  1746. color: '#fff'
  1747. },
  1748. splitLine: {
  1749. show: false // 不显示坐标轴刻度
  1750. }
  1751. }],
  1752. "series": [{
  1753. "smooth": true,
  1754. "name": "区县分布",
  1755. "type": "bar",
  1756. barWidth: 20,
  1757. "label": {
  1758. show: false,
  1759. position: "right"
  1760. },
  1761. "itemStyle": {
  1762. "normal": {
  1763. "lineStyle": {
  1764. "shadowColor": "rgba(0,0,0,0.4)"
  1765. },
  1766. barBorderRadius: [0, 8, 8, 0],
  1767. color: '#00e6f3'
  1768. }
  1769. },
  1770. "data": [
  1771. "5089",
  1772. "5272",
  1773. "14056",
  1774. "21965",
  1775. "35971",
  1776. ]
  1777. }, ]
  1778. },
  1779. "年龄段分布": {
  1780. "title": {
  1781. "text": "年龄段分布",
  1782. "x": "center",
  1783. "textStyle": {
  1784. color: ['#b5e1fc']
  1785. },
  1786. "padding": [10, 0, 0, 0]
  1787. },
  1788. "tooltip": {
  1789. "trigger": "item"
  1790. },
  1791. legend: {
  1792. orient: 'vertical',
  1793. data: ['0-6', '7-17', '18-40', '41-65', '> 65'],
  1794. right: '15%',
  1795. top: '25%',
  1796. textStyle: {
  1797. color: ['#b5e1fc']
  1798. }
  1799. },
  1800. "series": [{
  1801. "center": [
  1802. "35%",
  1803. "50%"
  1804. ],
  1805. radius: ['30%', '40%'],
  1806. "name": "",
  1807. "type": "pie",
  1808. "itemStyle": {
  1809. "normal": {
  1810. "label": {
  1811. "show": false
  1812. },
  1813. "labelLine": {
  1814. "show": false
  1815. }
  1816. }
  1817. },
  1818. "data": [{
  1819. "name": "0-6",
  1820. "value": "0"
  1821. },
  1822. {
  1823. "name": "7-17",
  1824. "value": "1282"
  1825. },
  1826. {
  1827. "name": "18-40",
  1828. "value": "1887"
  1829. },
  1830. {
  1831. "name": "41-65",
  1832. "value": "9950"
  1833. },
  1834. {
  1835. "name": "> 65",
  1836. "value": "1654"
  1837. }
  1838. ]
  1839. }]
  1840. },
  1841. "性别分布": {
  1842. "title": {
  1843. "text": "性别分布",
  1844. "x": "center",
  1845. "textStyle": {
  1846. color: ['#b5e1fc']
  1847. },
  1848. "padding": [10, 0, 0, 0]
  1849. },
  1850. "tooltip": {
  1851. "trigger": "item"
  1852. },
  1853. legend: {
  1854. orient: 'vertical',
  1855. // x: 'right',
  1856. data: ['男', '女'],
  1857. right: '25%',
  1858. top: '40%',
  1859. textStyle: {
  1860. color: ['#b5e1fc']
  1861. }
  1862. },
  1863. "series": [{
  1864. "center": [
  1865. "35%",
  1866. "50%"
  1867. ],
  1868. radius: ['30%', '40%'],
  1869. "name": "",
  1870. "type": "pie",
  1871. "itemStyle": {
  1872. "normal": {
  1873. "label": {
  1874. "show": false
  1875. },
  1876. "labelLine": {
  1877. "show": false
  1878. }
  1879. }
  1880. },
  1881. "data": [{
  1882. "name": "男",
  1883. "value": "42136"
  1884. },
  1885. {
  1886. "name": "女",
  1887. "value": "30117"
  1888. }
  1889. ]
  1890. }]
  1891. },
  1892. "并发症": {
  1893. "title": {
  1894. "text": "并发症排行",
  1895. "x": "center",
  1896. "textStyle": {
  1897. color: ['#b5e1fc']
  1898. },
  1899. "padding": [10, 0, 0, 0]
  1900. },
  1901. "tooltip": {
  1902. "trigger": "axis"
  1903. },
  1904. grid: {
  1905. top: 40,
  1906. bottom: 30,
  1907. left: 80
  1908. },
  1909. "yAxis": [{
  1910. "type": "category",
  1911. "name": "",
  1912. "data": [
  1913. "眼底病变",
  1914. "血管病变",
  1915. "肾病",
  1916. "脑血栓",
  1917. "冠心病",
  1918. ],
  1919. axisPointer: {
  1920. type: 'shadow'
  1921. },
  1922. axisTick: {
  1923. show: false
  1924. },
  1925. axisLine: {
  1926. lineStyle: {
  1927. color: '#095f8e'
  1928. }
  1929. },
  1930. axisLabel: {
  1931. color: '#b5e1fc'
  1932. },
  1933. nameTextStyle: {
  1934. color: '#b5e1fc'
  1935. }
  1936. }],
  1937. "xAxis": [{
  1938. "type": "value",
  1939. axisPointer: {
  1940. type: 'shadow'
  1941. },
  1942. axisTick: {
  1943. show: false
  1944. },
  1945. axisLine: {
  1946. lineStyle: {
  1947. color: '#095f8e'
  1948. }
  1949. },
  1950. axisLabel: {
  1951. color: '#fff'
  1952. },
  1953. splitLine: {
  1954. show: false // 不显示坐标轴刻度
  1955. }
  1956. }],
  1957. "series": [{
  1958. "smooth": true,
  1959. "name": "并发症排行",
  1960. "type": "bar",
  1961. barWidth: 20,
  1962. "label": {
  1963. show: false,
  1964. position: "right"
  1965. },
  1966. "itemStyle": {
  1967. "normal": {
  1968. "lineStyle": {
  1969. "shadowColor": "rgba(0,0,0,0.4)"
  1970. },
  1971. barBorderRadius: [0, 8, 8, 0],
  1972. color: '#00e6f3'
  1973. }
  1974. },
  1975. "data": [
  1976. "378",
  1977. "443",
  1978. "745",
  1979. "1045",
  1980. "1160",
  1981. ]
  1982. }, ]
  1983. },
  1984. "新增患者趋势": {
  1985. "日": {
  1986. "title": {
  1987. "text": "新增患者趋势",
  1988. "x": "center",
  1989. textStyle: {
  1990. color: '#b5e1fc',
  1991. fontSize: 16,
  1992. fontWeight: 'bold'
  1993. }
  1994. },
  1995. tooltip: {
  1996. trigger: 'axis',
  1997. axisPointer: {
  1998. type: 'cross',
  1999. crossStyle: {
  2000. color: '#fff'
  2001. }
  2002. }
  2003. },
  2004. "grid": {
  2005. top: '90',
  2006. left: '60'
  2007. },
  2008. legend: {
  2009. data: ['新增人次', '环比'],
  2010. textStyle: {
  2011. color: '#b5e1fc'
  2012. },
  2013. top: '40'
  2014. },
  2015. xAxis: [{
  2016. type: 'category',
  2017. "data": [
  2018. "2018-07-01",
  2019. "2018-07-02",
  2020. "2018-07-03",
  2021. "2018-07-04",
  2022. "2018-07-05",
  2023. "2018-07-06",
  2024. "2018-07-07",
  2025. "2018-07-08"
  2026. ],
  2027. axisPointer: {
  2028. type: 'shadow'
  2029. },
  2030. axisTick: {
  2031. show: false
  2032. },
  2033. axisLine: {
  2034. lineStyle: {
  2035. color: '#095f8e'
  2036. }
  2037. },
  2038. axisLabel: {
  2039. color: '#b5e1fc'
  2040. }
  2041. }],
  2042. yAxis: [{
  2043. type: 'value',
  2044. name: '新增人次',
  2045. max: 10,
  2046. nameTextStyle: {
  2047. color: '#b5e1fc' // 坐标轴名称颜色
  2048. },
  2049. splitLine: {
  2050. show: false
  2051. },
  2052. axisLine: {
  2053. lineStyle: {
  2054. color: '#095f8e'
  2055. }
  2056. },
  2057. axisLabel: {
  2058. color: '#b5e1fc'
  2059. }
  2060. },
  2061. {
  2062. type: 'value',
  2063. name: '环比',
  2064. min: 0,
  2065. max: 10,
  2066. nameTextStyle: {
  2067. color: '#b5e1fc' // 坐标轴名称颜色
  2068. },
  2069. splitLine: {
  2070. show: false // 不显示坐标轴刻度
  2071. },
  2072. axisLine: {
  2073. lineStyle: {
  2074. color: '#095f8e' // 坐标轴轴线颜色
  2075. }
  2076. },
  2077. axisLabel: {
  2078. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  2079. }
  2080. }
  2081. ],
  2082. series: [{
  2083. name: '新增人次',
  2084. type: 'bar',
  2085. "data": [
  2086. "6",
  2087. "7",
  2088. "5",
  2089. "5",
  2090. "6",
  2091. "7",
  2092. "5",
  2093. "3"
  2094. ],
  2095. barWidth: 20,
  2096. label: {
  2097. normal: {
  2098. show: true,
  2099. position: 'top', // 在柱状图上方显示
  2100. color: '#fff' // 柱状图上方显示的数值颜色
  2101. }
  2102. },
  2103. itemStyle: {
  2104. barBorderRadius: [8, 8, 0, 0],
  2105. color: '#00e6f3'
  2106. }
  2107. },
  2108. {
  2109. name: '环比',
  2110. type: 'line',
  2111. yAxisIndex: 1,
  2112. "data": [
  2113. "3",
  2114. "3",
  2115. "0",
  2116. "2",
  2117. "3",
  2118. "3",
  2119. "2",
  2120. "2"
  2121. ],
  2122. itemStyle: {
  2123. color: '#03fa6d'
  2124. }
  2125. }
  2126. ]
  2127. },
  2128. "月": {
  2129. "title": {
  2130. "text": "新增患者趋势",
  2131. "x": "center",
  2132. textStyle: {
  2133. color: '#b5e1fc',
  2134. fontSize: 16,
  2135. fontWeight: 'bold'
  2136. }
  2137. },
  2138. tooltip: {
  2139. trigger: 'axis',
  2140. axisPointer: {
  2141. type: 'cross',
  2142. crossStyle: {
  2143. color: '#fff'
  2144. }
  2145. }
  2146. },
  2147. "grid": {
  2148. top: '50',
  2149. left: '60'
  2150. },
  2151. legend: {
  2152. data: ['新增人次', '环比'],
  2153. textStyle: {
  2154. color: '#b5e1fc'
  2155. },
  2156. top: '40'
  2157. },
  2158. xAxis: [{
  2159. type: 'category',
  2160. "data": [
  2161. "2018-01",
  2162. "2018-02",
  2163. "2018-03",
  2164. "2018-04",
  2165. "2018-05",
  2166. "2018-06"
  2167. ],
  2168. axisPointer: {
  2169. type: 'shadow'
  2170. },
  2171. axisTick: {
  2172. show: false
  2173. },
  2174. axisLine: {
  2175. lineStyle: {
  2176. color: '#095f8e'
  2177. }
  2178. },
  2179. axisLabel: {
  2180. color: '#b5e1fc'
  2181. }
  2182. }],
  2183. yAxis: [{
  2184. type: 'value',
  2185. name: '新增人次',
  2186. max: 10,
  2187. nameTextStyle: {
  2188. color: '#b5e1fc' // 坐标轴名称颜色
  2189. },
  2190. splitLine: {
  2191. show: false
  2192. },
  2193. axisLine: {
  2194. lineStyle: {
  2195. color: '#095f8e'
  2196. }
  2197. },
  2198. axisLabel: {
  2199. color: '#b5e1fc'
  2200. }
  2201. },
  2202. {
  2203. type: 'value',
  2204. name: '环比',
  2205. min: 0,
  2206. max: 10,
  2207. nameTextStyle: {
  2208. color: '#b5e1fc' // 坐标轴名称颜色
  2209. },
  2210. splitLine: {
  2211. show: false // 不显示坐标轴刻度
  2212. },
  2213. axisLine: {
  2214. lineStyle: {
  2215. color: '#095f8e' // 坐标轴轴线颜色
  2216. }
  2217. },
  2218. axisLabel: {
  2219. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  2220. }
  2221. }
  2222. ],
  2223. series: [{
  2224. name: '新增人次',
  2225. type: 'bar',
  2226. "data": [
  2227. "6",
  2228. "7",
  2229. "5",
  2230. "5",
  2231. "6",
  2232. "7"
  2233. ],
  2234. barWidth: 20,
  2235. label: {
  2236. normal: {
  2237. show: true,
  2238. position: 'top', // 在柱状图上方显示
  2239. color: '#fff' // 柱状图上方显示的数值颜色
  2240. }
  2241. },
  2242. itemStyle: {
  2243. barBorderRadius: [8, 8, 0, 0],
  2244. color: '#00e6f3'
  2245. }
  2246. },
  2247. {
  2248. name: '环比',
  2249. type: 'line',
  2250. yAxisIndex: 1,
  2251. "data": [
  2252. "4",
  2253. "6",
  2254. "3",
  2255. "5",
  2256. "3",
  2257. "4"
  2258. ],
  2259. itemStyle: {
  2260. color: '#03fa6d'
  2261. }
  2262. }
  2263. ]
  2264. },
  2265. "季": {
  2266. "title": {
  2267. "text": "新增患者趋势",
  2268. "x": "center",
  2269. textStyle: {
  2270. color: '#b5e1fc',
  2271. fontSize: 16,
  2272. fontWeight: 'bold'
  2273. }
  2274. },
  2275. tooltip: {
  2276. trigger: 'axis',
  2277. axisPointer: {
  2278. type: 'cross',
  2279. crossStyle: {
  2280. color: '#fff'
  2281. }
  2282. }
  2283. },
  2284. "grid": {
  2285. top: '50',
  2286. left: '60'
  2287. },
  2288. legend: {
  2289. data: ['新增人次', '环比'],
  2290. textStyle: {
  2291. color: '#b5e1fc'
  2292. },
  2293. top: '40'
  2294. },
  2295. xAxis: [{
  2296. type: 'category',
  2297. "data": [
  2298. "2017季度3",
  2299. "2017季度4",
  2300. "2018季度1",
  2301. "2018季度2"
  2302. ],
  2303. axisPointer: {
  2304. type: 'shadow'
  2305. },
  2306. axisTick: {
  2307. show: false
  2308. },
  2309. axisLine: {
  2310. lineStyle: {
  2311. color: '#095f8e'
  2312. }
  2313. },
  2314. axisLabel: {
  2315. color: '#b5e1fc'
  2316. }
  2317. }],
  2318. yAxis: [{
  2319. type: 'value',
  2320. name: '新增人次',
  2321. max: 10,
  2322. nameTextStyle: {
  2323. color: '#b5e1fc' // 坐标轴名称颜色
  2324. },
  2325. splitLine: {
  2326. show: false
  2327. },
  2328. axisLine: {
  2329. lineStyle: {
  2330. color: '#095f8e'
  2331. }
  2332. },
  2333. axisLabel: {
  2334. color: '#b5e1fc'
  2335. }
  2336. },
  2337. {
  2338. type: 'value',
  2339. name: '环比',
  2340. min: 0,
  2341. max: 13,
  2342. nameTextStyle: {
  2343. color: '#b5e1fc' // 坐标轴名称颜色
  2344. },
  2345. splitLine: {
  2346. show: false // 不显示坐标轴刻度
  2347. },
  2348. axisLine: {
  2349. lineStyle: {
  2350. color: '#095f8e' // 坐标轴轴线颜色
  2351. }
  2352. },
  2353. axisLabel: {
  2354. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  2355. }
  2356. }
  2357. ],
  2358. series: [{
  2359. name: '新增人次',
  2360. type: 'bar',
  2361. "data": [
  2362. "8",
  2363. "7",
  2364. "5",
  2365. "5"
  2366. ],
  2367. barWidth: 20,
  2368. label: {
  2369. normal: {
  2370. show: true,
  2371. position: 'top', // 在柱状图上方显示
  2372. color: '#fff' // 柱状图上方显示的数值颜色
  2373. }
  2374. },
  2375. itemStyle: {
  2376. barBorderRadius: [8, 8, 0, 0],
  2377. color: '#00e6f3'
  2378. }
  2379. },
  2380. {
  2381. name: '环比',
  2382. type: 'line',
  2383. yAxisIndex: 1,
  2384. "data": [
  2385. "11",
  2386. "8",
  2387. "3",
  2388. "5"
  2389. ],
  2390. itemStyle: {
  2391. color: '#03fa6d'
  2392. }
  2393. }
  2394. ]
  2395. },
  2396. "年": {
  2397. "title": {
  2398. "text": "新增患者趋势",
  2399. "x": "center",
  2400. textStyle: {
  2401. color: '#b5e1fc',
  2402. fontSize: 16,
  2403. fontWeight: 'bold'
  2404. }
  2405. },
  2406. tooltip: {
  2407. trigger: 'axis',
  2408. axisPointer: {
  2409. type: 'cross',
  2410. crossStyle: {
  2411. color: '#fff'
  2412. }
  2413. }
  2414. },
  2415. "grid": {
  2416. top: '50',
  2417. left: '60'
  2418. },
  2419. legend: {
  2420. data: ['新增人次', '环比'],
  2421. textStyle: {
  2422. color: '#b5e1fc'
  2423. },
  2424. top: '40'
  2425. },
  2426. xAxis: [{
  2427. type: 'category',
  2428. "data": [
  2429. "2016",
  2430. "2017",
  2431. "2018"
  2432. ],
  2433. axisPointer: {
  2434. type: 'shadow'
  2435. },
  2436. axisTick: {
  2437. show: false
  2438. },
  2439. axisLine: {
  2440. lineStyle: {
  2441. color: '#095f8e'
  2442. }
  2443. },
  2444. axisLabel: {
  2445. color: '#b5e1fc'
  2446. }
  2447. }],
  2448. yAxis: [{
  2449. type: 'value',
  2450. name: '新增人次',
  2451. max: 200,
  2452. nameTextStyle: {
  2453. color: '#b5e1fc' // 坐标轴名称颜色
  2454. },
  2455. splitLine: {
  2456. show: false
  2457. },
  2458. axisLine: {
  2459. lineStyle: {
  2460. color: '#095f8e'
  2461. }
  2462. },
  2463. axisLabel: {
  2464. color: '#b5e1fc'
  2465. }
  2466. },
  2467. {
  2468. type: 'value',
  2469. name: '环比',
  2470. min: 0,
  2471. max: 50,
  2472. nameTextStyle: {
  2473. color: '#b5e1fc' // 坐标轴名称颜色
  2474. },
  2475. splitLine: {
  2476. show: false // 不显示坐标轴刻度
  2477. },
  2478. axisLine: {
  2479. lineStyle: {
  2480. color: '#095f8e' // 坐标轴轴线颜色
  2481. }
  2482. },
  2483. axisLabel: {
  2484. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  2485. }
  2486. }
  2487. ],
  2488. series: [{
  2489. name: '新增人次',
  2490. type: 'bar',
  2491. "data": [
  2492. "135",
  2493. "158",
  2494. "116"
  2495. ],
  2496. barWidth: 20,
  2497. label: {
  2498. normal: {
  2499. show: true,
  2500. position: 'top', // 在柱状图上方显示
  2501. color: '#fff' // 柱状图上方显示的数值颜色
  2502. }
  2503. },
  2504. itemStyle: {
  2505. barBorderRadius: [8, 8, 0, 0],
  2506. color: '#00e6f3'
  2507. }
  2508. },
  2509. {
  2510. name: '环比',
  2511. type: 'line',
  2512. yAxisIndex: 1,
  2513. "data": [
  2514. "27",
  2515. "36",
  2516. "23"
  2517. ],
  2518. itemStyle: {
  2519. color: '#03fa6d'
  2520. }
  2521. }
  2522. ]
  2523. }
  2524. }
  2525. },
  2526. }