medical.js 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. new Vue({
  2. el: '#app',
  3. data: {
  4. city:'贵港市',
  5. town: [
  6. {
  7. "townName": "贵港市",
  8. "result": "0"
  9. },
  10. {
  11. "townName": "港北区",
  12. "result": "26531"
  13. },
  14. {
  15. "townName": "港南区",
  16. "result": "25634"
  17. },
  18. {
  19. "townName": "桂平市",
  20. "result": "113485"
  21. },
  22. {
  23. "townName": "平南县",
  24. "result": "74128"
  25. },
  26. {
  27. "townName": "覃塘区",
  28. "result": "12587"
  29. },
  30. ],
  31. timeType:'1',//时间过滤条件 1是上月 2是半年
  32. leftData1:{}, //左边数据块1
  33. leftData2:{}, //左边数据块2
  34. yesterdayData:{},
  35. leftChart1:null, //左边的图表1
  36. leftChart2:null, //左边的图表2
  37. rightChart1:null, //右边边的图表1
  38. rightChart2:null, //右边的图表2
  39. tableData1:null, //表格数据1
  40. tableData2:null, //表格数据2
  41. mapData:null,
  42. allData:null , //所有的数据 用来切换区县
  43. lineHeightIndex:null,
  44. skipShow:0,
  45. },
  46. mounted: function() {
  47. this.allData = this.newObj(bigData);
  48. this.initData()
  49. },
  50. methods: {
  51. initData:function(){
  52. this.setLeftChart1();
  53. this.setLeftChart2();
  54. this.setRightChart1();
  55. this.setRightChart2();
  56. this.setTable1();
  57. this.setTable2();
  58. this.setleftData1();
  59. this.setYesterDay();
  60. this.setMapData();
  61. },
  62. setleftData1:function(){
  63. var options = null;
  64. if(this.timeType == 1){
  65. options= this.newObj(this.allData['上月']);
  66. }
  67. else{
  68. options= this.newObj(this.allData['本年'])
  69. }
  70. this.setFormater(options);
  71. this.leftData1 = options;
  72. },
  73. setYesterDay:function(){
  74. var options = null;
  75. options= this.newObj(this.allData['昨日数据'])
  76. this.setFormater(options);
  77. this.yesterdayData = options;
  78. },
  79. setLeftChart1:function(){
  80. var options =this.allData['门诊人次月趋势'];
  81. options.grid= {
  82. top: '70',
  83. left: '75',
  84. bottom:'40'
  85. };
  86. options.yAxis[1].show =true;
  87. options.tooltip.formatter= '{b} <br /> {a0}: {c0}<br />{a1}: {c1}' + "%";
  88. options.yAxis[0].axisLabel.fontSize='14'
  89. options.yAxis[1].axisLabel.fontSize='14'
  90. options.xAxis[0].axisLabel.fontSize='14'
  91. this.leftChart1 = options
  92. },
  93. setLeftChart2:function(){
  94. var options =this.allData['住院人次月趋势'];
  95. options.grid={
  96. top: '70',
  97. left: '70',
  98. bottom:'40'
  99. };
  100. options.yAxis[1].show =true;
  101. options.tooltip.formatter= '{b} <br /> {a0}: {c0}<br />{a1}: {c1}' + "%";
  102. options.yAxis[0].axisLabel.fontSize='14'
  103. options.yAxis[1].axisLabel.fontSize='14'
  104. options.xAxis[0].axisLabel.fontSize='14'
  105. this.leftChart2 = options
  106. },
  107. setMapData:function(){
  108. var options =this.allData['各区县服务患者数'];
  109. this.mapData ={data:options,index:this.lineHeightIndex} ;
  110. },
  111. setRightChart1:function(){
  112. var options =this.allData['门诊分类别月趋势'];
  113. options.grid={
  114. top: '80',
  115. left: '80',
  116. bottom: '30'
  117. }
  118. options.yAxis[1].show =true;
  119. options.yAxis[0].axisLabel.fontSize='14'
  120. options.yAxis[1].axisLabel.fontSize='14'
  121. options.xAxis[0].axisLabel.fontSize='14'
  122. this.rightChart1= options
  123. },
  124. setRightChart2:function(){
  125. var options =this.allData['住院平均日数月趋势'];
  126. options.yAxis[1].show = true;
  127. options.tooltip.formatter= '{b} <br /> {a0}: {c0}<br />{a1}: {c1}' + "%";
  128. options.yAxis[0].axisLabel.fontSize='14'
  129. options.yAxis[1].axisLabel.fontSize='14'
  130. options.xAxis[0].axisLabel.fontSize='14'
  131. this.rightChart2= options
  132. },
  133. setTable1:function(){
  134. var options =this.allData['门急诊服务情况'];
  135. this.tableData1= options
  136. },
  137. setTable2:function(){
  138. var options =this.allData['住院服务情况'];
  139. this.tableData2= options
  140. },
  141. setCity(item){
  142. this.city = item.townName;
  143. },
  144. setTimeStr(v){
  145. this.timeType = v;
  146. this.setleftData1()
  147. },
  148. setFormater:function(obj){
  149. for(var c in obj){
  150. obj[c] =toThousands(obj[c])
  151. }
  152. },
  153. newObj:function(obj){
  154. return JSON.parse(JSON.stringify(obj))
  155. },
  156. clickMap:function(res){
  157. this.city = res.name;
  158. },
  159. skipClick:function(){
  160. console.log(222)
  161. this.skipShow == 0 ? this.skipShow = 1 : this.skipShow = 0
  162. }
  163. },
  164. watch: {
  165. city:function(value){
  166. var that =this;
  167. that.lineHeightIndex =value;
  168. this.town.map(function(v,i){
  169. if(v.townName == value) {
  170. switch(i){
  171. case 0:that.allData = that.newObj(bigData);break;
  172. case 1:that.allData = that.newObj(bigData2);break;
  173. case 2:that.allData = that.newObj(bigData3);break;
  174. case 3:that.allData = that.newObj(bigData4);break;
  175. case 4:that.allData = that.newObj(bigData5);break;
  176. case 5:that.allData = that.newObj(bigData5);break;
  177. }
  178. }
  179. })
  180. this.initData()
  181. }
  182. }
  183. });
  184. //数字格式化
  185. function toThousands(str) {
  186. if(!str)return
  187. str =parseInt(str);
  188. if(typeof(str) == 'number')str = str.toString()
  189. var newStr = "";
  190. var count = 0;
  191. if(str.indexOf(".") == -1) {
  192. for(var i = str.length - 1; i >= 0; i--) {
  193. if(count % 3 == 0 && count != 0) {
  194. newStr = str.charAt(i) + "," + newStr;
  195. } else {
  196. newStr = str.charAt(i) + newStr;
  197. }
  198. count++;
  199. }
  200. str = newStr;
  201. } else {
  202. for(var i = str.indexOf(".") - 1; i >= 0; i--) {
  203. if(count % 3 == 0 && count != 0) {
  204. newStr = str.charAt(i) + "," + newStr;
  205. } else {
  206. newStr = str.charAt(i) + newStr; //逐个字符相接起来
  207. }
  208. count++;
  209. }
  210. str = newStr + (str + "00").substr((str + "00").indexOf("."), 3);
  211. }
  212. return str;
  213. }