home.js 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. toastr.options = {
  2. "closeButton": true,
  3. "positionClass": "toast-top-center",
  4. "preventDuplicates": true
  5. }
  6. new Vue({
  7. el: '#main',
  8. data: {
  9. jsonUrl:"../../../dataJson/jumingHealthJson/高血压人群.json",
  10. jsonData:null,
  11. city: '上饶市',
  12. town: [],
  13. cityVal:"0",
  14. mapData:null,
  15. skipShow:0,
  16. lineHeightIndex:null,
  17. },
  18. mounted: function() {
  19. this.bindEvents();
  20. this.initData();
  21. this.getJsonData();
  22. },
  23. methods: {
  24. initData:function(){
  25. var vm = this;
  26. $(".div-mask-layer").hide();
  27. var reqUrl = [{url: bigDataAPI.getCityArea,reqType: 'get',data: {}},
  28. {url:bigDataAPI.getMapJingWeiDuInfo,reqType: 'get',data:{}},//上饶地图经纬度数据
  29. {url: bigDataAPI.getNoChartTemplateData,reqType: 'get',data: {viewCodeStr: "VIEW_13_0026"}},//地图数据
  30. {url: bigDataAPI.getNoChartTemplateData,reqType: 'get',data: {viewCodeStr: "VIEW_13_0027"}},//按月环比糖尿病患者人数
  31. ];
  32. httpRequest.getReqPromises(reqUrl).then(function(datas) {
  33. debugger
  34. vm.town = [{
  35. "name": "上饶市",
  36. "id": "0"
  37. }].concat(datas[0]);
  38. echarts.registerMap('上饶',datas[1]);
  39. vm.setMapData(datas[2]);
  40. })
  41. },
  42. setMapData: function(data) {
  43. var optionData = [];
  44. _.map(data.obj.VIEW_13_0026, function(item) {
  45. if(item.firstColumn != "合计") {
  46. optionData.push({
  47. name: item.townName,
  48. value: parseInt(item.HC_13_0017)
  49. })
  50. }
  51. })
  52. var options = optionData;
  53. this.mapData = {
  54. data: options,
  55. index: this.lineHeightIndex
  56. };
  57. },
  58. getJsonData:function(){
  59. var vm = this;
  60. bigDataAPI.getJsonData(this.jsonUrl).then(function(res){
  61. vm.jsonData = res;
  62. var options = _.map(res.town,function(item,idx){
  63. var it = {name:item.townName,value:item.result}
  64. return it;
  65. })
  66. vm.mapData ={data:options,zoom:1,index:vm.lineHeightIndex};
  67. })
  68. },
  69. bindEvents:function(){
  70. var vm = this;
  71. EventBus.$on("refresh-json-data", function(arg) {
  72. var type = arg.type;//0:高血压 1糖尿病 2孕产妇 365岁以上老年人人数
  73. if(type==0){
  74. vm.jsonUrl = "../../../dataJson/jumingHealthJson/高血压人群.json";
  75. }else if(type==1){
  76. vm.jsonUrl = "../../../dataJson/jumingHealthJson/糖尿病人群.json";
  77. }else if(type==2){
  78. vm.jsonUrl = "../../../dataJson/jumingHealthJson/孕产妇人群.json";
  79. }else if(type==3){
  80. vm.jsonUrl = "../../../dataJson/jumingHealthJson/65岁以上老年人人数.json";
  81. }
  82. vm.getJsonData();
  83. });
  84. },
  85. setCity(item){
  86. this.city = item.townName;
  87. },
  88. clickMap:function(res){
  89. this.city = res.name;
  90. },
  91. refreshAllData:function(cityVal){
  92. var vm = this;
  93. cityVal = parseInt(cityVal)
  94. switch(cityVal){
  95. case 0: vm.jsonUrl = "../../../dataJson/jumingHealthJson/高血压人群.json"; break;//贵港市
  96. case 26531: vm.jsonUrl = "../../../dataJson/jumingHealthJson/港北区.json"; break;//港北区
  97. case 25634: vm.jsonUrl = "../../../dataJson/jumingHealthJson/港南区.json";break;//港南区
  98. case 113485: vm.jsonUrl = "../../../dataJson/jumingHealthJson/桂平市.json"; break;//桂平市
  99. case 74128: vm.jsonUrl = "../../../dataJson/jumingHealthJson/平南县.json"; break;//平南县
  100. case 12587:vm.jsonUrl = "../../../dataJson/jumingHealthJson/覃塘区.json"; break;//覃塘区
  101. default:break;
  102. }
  103. vm.getJsonData();
  104. },
  105. skipClick:function(){
  106. console.log(222)
  107. this.skipShow == 0 ? this.skipShow = 1 : this.skipShow = 0
  108. }
  109. },
  110. watch:{
  111. jsonData:function(data){
  112. this.jsonData = data;
  113. },
  114. city:function(value){
  115. var that =this;
  116. that.lineHeightIndex =value;
  117. // debugger
  118. this.town.map(function(v,i){
  119. if(v.townName == value) {
  120. that.refreshAllData(v.result);
  121. }
  122. })
  123. }
  124. }
  125. });
  126. //数字格式化
  127. function toThousands(str) {
  128. if(!str)return
  129. str =parseInt(str);
  130. if(typeof(str) == 'number')str = str.toString()
  131. var newStr = "";
  132. var count = 0;
  133. if(str.indexOf(".") == -1) {
  134. for(var i = str.length - 1; i >= 0; i--) {
  135. if(count % 3 == 0 && count != 0) {
  136. newStr = str.charAt(i) + "," + newStr;
  137. } else {
  138. newStr = str.charAt(i) + newStr;
  139. }
  140. count++;
  141. }
  142. str = newStr;
  143. } else {
  144. for(var i = str.indexOf(".") - 1; i >= 0; i--) {
  145. if(count % 3 == 0 && count != 0) {
  146. newStr = str.charAt(i) + "," + newStr;
  147. } else {
  148. newStr = str.charAt(i) + newStr; //逐个字符相接起来
  149. }
  150. count++;
  151. }
  152. str = newStr + (str + "00").substr((str + "00").indexOf("."), 3);
  153. }
  154. return str;
  155. }