medical.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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. };
  85. options.yAxis[1].show =true;
  86. this.leftChart1 = options
  87. },
  88. setLeftChart2:function(){
  89. var options =this.allData['住院人次月趋势'];
  90. options.grid={
  91. top: '70',
  92. left: '70'
  93. };
  94. options.yAxis[1].show =true;
  95. this.leftChart2 = options
  96. },
  97. setMapData:function(){
  98. var options =this.allData['各区县服务患者数'];
  99. this.mapData ={data:options,index:this.lineHeightIndex} ;
  100. },
  101. setRightChart1:function(){
  102. var options =this.allData['门诊分类别月趋势'];
  103. options.grid={
  104. top: '70',
  105. left: '80',
  106. bottom: '30'
  107. }
  108. options.yAxis[1].show =true;
  109. this.rightChart1= options
  110. },
  111. setRightChart2:function(){
  112. var options =this.allData['住院平均日数月趋势'];
  113. options.yAxis[1].show = true;
  114. this.rightChart2= options
  115. },
  116. setTable1:function(){
  117. var options =this.allData['门急诊服务情况'];
  118. this.tableData1= options
  119. },
  120. setTable2:function(){
  121. var options =this.allData['住院服务情况'];
  122. this.tableData2= options
  123. },
  124. setCity(item){
  125. this.city = item.townName;
  126. },
  127. setTimeStr(v){
  128. this.timeType = v;
  129. this.setleftData1()
  130. },
  131. setFormater:function(obj){
  132. for(var c in obj){
  133. obj[c] =toThousands(obj[c])
  134. }
  135. },
  136. newObj:function(obj){
  137. return JSON.parse(JSON.stringify(obj))
  138. },
  139. clickMap:function(res){
  140. this.city = res.name;
  141. },
  142. skipClick:function(){
  143. console.log(222)
  144. this.skipShow == 0 ? this.skipShow = 1 : this.skipShow = 0
  145. }
  146. },
  147. watch: {
  148. city:function(value){
  149. var that =this;
  150. that.lineHeightIndex =value;
  151. this.town.map(function(v,i){
  152. if(v.townName == value) {
  153. switch(i){
  154. case 0:that.allData = that.newObj(bigData);break;
  155. case 1:that.allData = that.newObj(bigData2);break;
  156. case 2:that.allData = that.newObj(bigData3);break;
  157. case 3:that.allData = that.newObj(bigData4);break;
  158. case 4:that.allData = that.newObj(bigData5);break;
  159. case 5:that.allData = that.newObj(bigData5);break;
  160. }
  161. }
  162. })
  163. this.initData()
  164. // that.$refs.map.selectLineHeight(that.lineHeightIndex) //高亮地图
  165. }
  166. }
  167. });
  168. //数字格式化
  169. function toThousands(str) {
  170. if(!str)return
  171. str =parseInt(str);
  172. if(typeof(str) == 'number')str = str.toString()
  173. var newStr = "";
  174. var count = 0;
  175. if(str.indexOf(".") == -1) {
  176. for(var i = str.length - 1; i >= 0; i--) {
  177. if(count % 3 == 0 && count != 0) {
  178. newStr = str.charAt(i) + "," + newStr;
  179. } else {
  180. newStr = str.charAt(i) + newStr;
  181. }
  182. count++;
  183. }
  184. str = newStr;
  185. } else {
  186. for(var i = str.indexOf(".") - 1; i >= 0; i--) {
  187. if(count % 3 == 0 && count != 0) {
  188. newStr = str.charAt(i) + "," + newStr;
  189. } else {
  190. newStr = str.charAt(i) + newStr; //逐个字符相接起来
  191. }
  192. count++;
  193. }
  194. str = newStr + (str + "00").substr((str + "00").indexOf("."), 3);
  195. }
  196. return str;
  197. }