123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- toastr.options = {
- "closeButton": true,
- "positionClass": "toast-top-center",
- "preventDuplicates": true
- }
- new Vue({
- el: '#main',
- data: {
- jsonUrl:"../../../dataJson/jumingHealthJson/高血压人群.json",
- jsonData:null,
- city: '上饶市',
- town: [],
- cityVal:"0",
- mapData:null,
- skipShow:0,
- lineHeightIndex:null,
- },
- mounted: function() {
- this.bindEvents();
- this.initData();
- this.getJsonData();
- },
- methods: {
- initData:function(){
- var vm = this;
- $(".div-mask-layer").hide();
- var reqUrl = [{url: bigDataAPI.getCityArea,reqType: 'get',data: {}},
- {url:bigDataAPI.getMapJingWeiDuInfo,reqType: 'get',data:{}},//上饶地图经纬度数据
- {url: bigDataAPI.getNoChartTemplateData,reqType: 'get',data: {viewCodeStr: "VIEW_13_0026"}},//地图数据
- {url: bigDataAPI.getNoChartTemplateData,reqType: 'get',data: {viewCodeStr: "VIEW_13_0027"}},//按月环比糖尿病患者人数
- ];
- httpRequest.getReqPromises(reqUrl).then(function(datas) {
- debugger
- vm.town = [{
- "name": "上饶市",
- "id": "0"
- }].concat(datas[0]);
- echarts.registerMap('上饶',datas[1]);
- vm.setMapData(datas[2]);
- })
- },
- setMapData: function(data) {
- var optionData = [];
- _.map(data.obj.VIEW_13_0026, function(item) {
- if(item.firstColumn != "合计") {
- optionData.push({
- name: item.townName,
- value: parseInt(item.HC_13_0017)
- })
- }
- })
- var options = optionData;
- this.mapData = {
- data: options,
- index: this.lineHeightIndex
- };
- },
- getJsonData:function(){
- var vm = this;
- bigDataAPI.getJsonData(this.jsonUrl).then(function(res){
- vm.jsonData = res;
- var options = _.map(res.town,function(item,idx){
- var it = {name:item.townName,value:item.result}
- return it;
- })
- vm.mapData ={data:options,zoom:1,index:vm.lineHeightIndex};
- })
- },
- bindEvents:function(){
- var vm = this;
- EventBus.$on("refresh-json-data", function(arg) {
- var type = arg.type;//0:高血压 1糖尿病 2孕产妇 365岁以上老年人人数
- if(type==0){
- vm.jsonUrl = "../../../dataJson/jumingHealthJson/高血压人群.json";
- }else if(type==1){
- vm.jsonUrl = "../../../dataJson/jumingHealthJson/糖尿病人群.json";
- }else if(type==2){
- vm.jsonUrl = "../../../dataJson/jumingHealthJson/孕产妇人群.json";
- }else if(type==3){
- vm.jsonUrl = "../../../dataJson/jumingHealthJson/65岁以上老年人人数.json";
- }
- vm.getJsonData();
- });
- },
- setCity(item){
- this.city = item.townName;
- },
- clickMap:function(res){
- this.city = res.name;
- },
- refreshAllData:function(cityVal){
- var vm = this;
- cityVal = parseInt(cityVal)
- switch(cityVal){
- case 0: vm.jsonUrl = "../../../dataJson/jumingHealthJson/高血压人群.json"; break;//贵港市
- case 26531: vm.jsonUrl = "../../../dataJson/jumingHealthJson/港北区.json"; break;//港北区
- case 25634: vm.jsonUrl = "../../../dataJson/jumingHealthJson/港南区.json";break;//港南区
- case 113485: vm.jsonUrl = "../../../dataJson/jumingHealthJson/桂平市.json"; break;//桂平市
- case 74128: vm.jsonUrl = "../../../dataJson/jumingHealthJson/平南县.json"; break;//平南县
- case 12587:vm.jsonUrl = "../../../dataJson/jumingHealthJson/覃塘区.json"; break;//覃塘区
- default:break;
- }
- vm.getJsonData();
- },
- skipClick:function(){
- console.log(222)
- this.skipShow == 0 ? this.skipShow = 1 : this.skipShow = 0
- }
- },
- watch:{
- jsonData:function(data){
- this.jsonData = data;
- },
- city:function(value){
- var that =this;
- that.lineHeightIndex =value;
- // debugger
- this.town.map(function(v,i){
- if(v.townName == value) {
- that.refreshAllData(v.result);
-
-
- }
- })
-
- }
- }
- });
- //数字格式化
- function toThousands(str) {
- if(!str)return
- str =parseInt(str);
- if(typeof(str) == 'number')str = str.toString()
- var newStr = "";
- var count = 0;
- if(str.indexOf(".") == -1) {
- for(var i = str.length - 1; i >= 0; i--) {
- if(count % 3 == 0 && count != 0) {
- newStr = str.charAt(i) + "," + newStr;
- } else {
- newStr = str.charAt(i) + newStr;
- }
- count++;
- }
- str = newStr;
- } else {
- for(var i = str.indexOf(".") - 1; i >= 0; i--) {
- if(count % 3 == 0 && count != 0) {
- newStr = str.charAt(i) + "," + newStr;
- } else {
- newStr = str.charAt(i) + newStr; //逐个字符相接起来
- }
- count++;
- }
- str = newStr + (str + "00").substr((str + "00").indexOf("."), 3);
- }
- return str;
- }
|