Browse Source

解决bug5261 【PCIM】统计分析—长处方分析,筛选“年龄统计”“糖尿病”,人数柱状图app取到小数点后两位,列表第二列标题应为“总人数”

raolu 7 years ago
parent
commit
2f347ba3cc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/statistics/js/prescription-analysis.js

+ 2 - 2
app/statistics/js/prescription-analysis.js

@ -456,7 +456,7 @@ function handleSecondPanelData(data, vm){
                fieldName = ['0ageRate', '7ageRate', '19ageRate', '31ageRate', '51ageRate', '65ageRate']
                seriesData = [];
            for(i=0; i<6; i++){
                seriesData.push(parseInt(data[fieldName[i]]));
                seriesData.push(data[fieldName[i]]);
            }
            
            ageBar = drawBarChart("ageBar", xAxisData, seriesData, color, "人均使用次数");
@ -480,7 +480,7 @@ function listHandle(data, vm){
        '1': ["排名", "续方总量", "已完成", "居民取消", "审核未通过", "进行中", "其他原因取消"],
        '2': ["排名", "费用总计", "人均费用"],
        '3': ["排名", "居民自取", "物流配送", "健管师配送"],
        '4': ["排名", "绑定设备"],
        '4': ["排名", "总人数"]
    };
    EventBus.$emit("render-area-data",{
        level: vm.level,