home.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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_14_0012"}},//地图数据
  30. ];
  31. httpRequest.getReqPromises(reqUrl).then(function(datas) {
  32. vm.town = [{
  33. "name": "上饶市",
  34. "id": "0"
  35. }].concat(datas[0]);
  36. echarts.registerMap('上饶',datas[1]);
  37. vm.setMapData(datas[2]);
  38. })
  39. },
  40. setMapData: function(data) {
  41. var optionData = [];
  42. _.map(data.obj.VIEW_14_0012, function(item) {
  43. if(item.firstColumn != "合计") {
  44. optionData.push({
  45. name: item.townName,
  46. value: parseInt(item.HC_14_1019)
  47. })
  48. }
  49. })
  50. var options = optionData;
  51. this.mapData = {
  52. data: options,
  53. index: this.lineHeightIndex
  54. };
  55. },
  56. getJsonData:function(){
  57. var vm = this;
  58. bigDataAPI.getJsonData(this.jsonUrl).then(function(res){
  59. vm.jsonData = res;
  60. var options = _.map(res.town,function(item,idx){
  61. var it = {name:item.townName,value:item.result}
  62. return it;
  63. })
  64. vm.mapData ={data:options,zoom:1,index:vm.lineHeightIndex};
  65. })
  66. },
  67. bindEvents:function(){
  68. var vm = this;
  69. EventBus.$on("refresh-json-data", function(arg) {
  70. var type = arg.type;//0:高血压 1糖尿病 2孕产妇 365岁以上老年人人数
  71. if(type==0){
  72. vm.jsonUrl = "../../../dataJson/jumingHealthJson/高血压人群.json";
  73. }else if(type==1){
  74. vm.jsonUrl = "../../../dataJson/jumingHealthJson/糖尿病人群.json";
  75. }else if(type==2){
  76. vm.jsonUrl = "../../../dataJson/jumingHealthJson/孕产妇人群.json";
  77. }else if(type==3){
  78. vm.jsonUrl = "../../../dataJson/jumingHealthJson/65岁以上老年人人数.json";
  79. }
  80. vm.getJsonData();
  81. });
  82. },
  83. setCity(item){
  84. this.city = item.townName;
  85. },
  86. clickMap:function(res){
  87. this.city = res.name;
  88. },
  89. refreshAllData:function(cityVal){
  90. var vm = this;
  91. cityVal = parseInt(cityVal)
  92. switch(cityVal){
  93. case 0: vm.jsonUrl = "../../../dataJson/jumingHealthJson/高血压人群.json"; break;//贵港市
  94. case 26531: vm.jsonUrl = "../../../dataJson/jumingHealthJson/港北区.json"; break;//港北区
  95. case 25634: vm.jsonUrl = "../../../dataJson/jumingHealthJson/港南区.json";break;//港南区
  96. case 113485: vm.jsonUrl = "../../../dataJson/jumingHealthJson/桂平市.json"; break;//桂平市
  97. case 74128: vm.jsonUrl = "../../../dataJson/jumingHealthJson/平南县.json"; break;//平南县
  98. case 12587:vm.jsonUrl = "../../../dataJson/jumingHealthJson/覃塘区.json"; break;//覃塘区
  99. default:break;
  100. }
  101. vm.getJsonData();
  102. },
  103. skipClick:function(){
  104. console.log(222)
  105. this.skipShow == 0 ? this.skipShow = 1 : this.skipShow = 0
  106. }
  107. },
  108. watch:{
  109. jsonData:function(data){
  110. this.jsonData = data;
  111. },
  112. city:function(value){
  113. var that =this;
  114. that.lineHeightIndex =value;
  115. // debugger
  116. this.town.map(function(v,i){
  117. if(v.townName == value) {
  118. that.refreshAllData(v.result);
  119. }
  120. })
  121. }
  122. }
  123. });
  124. //数字格式化
  125. function toThousands(str) {
  126. if(!str)return
  127. str =parseInt(str);
  128. if(typeof(str) == 'number')str = str.toString()
  129. var newStr = "";
  130. var count = 0;
  131. if(str.indexOf(".") == -1) {
  132. for(var i = str.length - 1; i >= 0; i--) {
  133. if(count % 3 == 0 && count != 0) {
  134. newStr = str.charAt(i) + "," + newStr;
  135. } else {
  136. newStr = str.charAt(i) + newStr;
  137. }
  138. count++;
  139. }
  140. str = newStr;
  141. } else {
  142. for(var i = str.indexOf(".") - 1; i >= 0; i--) {
  143. if(count % 3 == 0 && count != 0) {
  144. newStr = str.charAt(i) + "," + newStr;
  145. } else {
  146. newStr = str.charAt(i) + newStr; //逐个字符相接起来
  147. }
  148. count++;
  149. }
  150. str = newStr + (str + "00").substr((str + "00").indexOf("."), 3);
  151. }
  152. return str;
  153. }