Parcourir la source

统计数据导出

chenyue il y a 4 ans
Parent
commit
9446cdb2af

+ 6 - 2
api/home-api.js

@ -9,12 +9,16 @@
    	},	
	    //获取社区医院  
		getCommunityHospital:function(data) {
            return httpRequest.get("hospitals/"+data.code+"/community_hospitals", {data: {}})
            return httpRequest.get("statisticsExport/hospitalList", {data: data})
    	},	
	    //获取专科医院 
		getSpecialistHospital:function(data) {
            return httpRequest.get("hospitals/specialist_hospitals", {data: data})
    	},		
    	},	
	    //获取团队 
		teamListByArea:function(data) {
            return httpRequest.get("statisticsExport/teamList", {data: data})
    	},	
    }
    exports.homeAPI = homeAPI;

+ 9 - 0
api/statistics-api.js

@ -92,6 +92,15 @@
        GetReservationByTeamId: function(data){
            return httpRequest.post("/doctor/guahao/GetReservationByTeamId", {data: data});
        },
        
        //数据导出查询
        getStatisticDataList: function(data){
            return httpRequest.get("statisticsExport/getStatisticDataList", {data: data});
        },
        //数据导出查询-左侧树
        exportTreeList: function(data){
            return httpRequest.get("statisticsExport/treeList", {data: data});
        },
    }
    exports.statisticAPI = statisticAPI;

+ 19 - 34
app/statistics/html/comprehensive-query.html

@ -19,28 +19,10 @@
    <link rel="stylesheet" type="text/css" href="../css/common.css" />
</head>
<style>
		.el-table th{
			background: #F5F5FA;
		}
.mainBlocktop {
    height: 170px;
	background: -webkit-linear-gradient(top, #5a83ff , #3b6cfe); /* Safari 5.1 - 6.0 */
	background: -o-linear-gradient(bottom, #5a83ff, #3b6cfe); /* Opera 11.1 - 12.0 */
	background: -moz-linear-gradient(bottom, #5a83ff, #3b6cfe); /* Firefox 3.6 - 15 */
	background: linear-gradient(to bottom, #5a83ff , #3b6cfe); /* 标准的语法(必须放在最后) */
	border-radius: 6px;
    color: #fff;
    font-size: 16px;
}
.mainBlockbottom {
    height: 170px;
    font-size: 16px;
	background: -webkit-linear-gradient(top, #396cfe ,#1954fd); /* Safari 5.1 - 6.0 */
	background: -o-linear-gradient(bottom, #396cfe, #1954fd); /* Opera 11.1 - 12.0 */
	background: -moz-linear-gradient(bottom, #396cfe, #1954fd); /* Firefox 3.6 - 15 */
	background: linear-gradient(to bottom, #396cfe , #1954fd); /* 标准的语法(必须放在最后) */
    border-radius: 6px;
    color: #fff;
}
.el-radio-button:first-child .el-radio-button__inner{
	border-radius: 15px 0 0 15px;
}
@ -73,33 +55,36 @@
							</el-date-picker>
		        		</div>
		        		<div class="searchDiv mt20">
		        			<label class="pl20 c-333 c-f14" for="" v-if="initlevel == 4||initlevel == 3">地区:</label>
		        			<el-select v-model="areaCode" style="width:120px;" class="pr20" v-if="initlevel == 4||initlevel == 3" @change="selChange(3)">
		        			<label class="c-333 c-f14" for="">数据范围:</label>
		        			<el-select v-model="rangeCode" style="width:100px;" class="pr10">
				                <el-option v-for="(item , index) in rangeList" :key="index" :label="item.name" :value="item.code"></el-option>
				            </el-select>
		        			<label class="c-333 c-f14" for="" v-if="initlevel == 4||initlevel == 3">地区:</label>
		        			<el-select v-model="areaCode" style="width:100px;" class="pr10" v-if="initlevel == 4||initlevel == 3">
				                <el-option v-for="(item , index) in areaList" :key="index" :label="item.name" :value="item.code"></el-option>
				            </el-select>
		        			<label class="pl20 c-333 c-f14" for="">社区:</label>
		        			<el-select v-model="communityCode" style="width:200px;" class="pr20"  @change="selChange(4)">
		        			<label class="c-333 c-f14" for="" v-show="rangeCode!='town'">社区:</label>
		        			<el-select v-model="communityCode" style="width:200px;" class="pr10" v-show="rangeCode!='town'">
				                <el-option v-for="(item , index) in communityList" :key="index" :label="item.name" :value="item.code"></el-option>
				            </el-select>
		        			<label class="pl20 c-333 c-f14" for="">团队:</label>
		        			<el-select v-model="teamCode" style="width:150px;" class="pr20">
				                <el-option v-for="(item , index) in teamList" :key="index" :label="item.name" :value="item.code"></el-option>
		        			<label class="c-333 c-f14" for="" v-show="rangeCode == 'team'">团队:</label>
		        			<el-select v-model="teamCode" style="width:150px;" class="pr10" v-show="rangeCode == 'team'">
				                <el-option v-for="(item , index) in teamList" :key="index" :label="item.name" :value="item.id"></el-option>
				            </el-select>
				            <el-button type="primary" size="mini" @click="searchHandle">查询</el-button>
				            <el-button type="ff9526" size="mini">导出</el-button>
				            <el-button type="ff9526" size="mini" @click="exportHandle">导出</el-button>
		        		</div>
			        	<div>
			        		<el-table border :data="tabledata" style="width: 100%" class="mt20" v-loading="isloading">
			        			<el-table-column  type="index" label="序号" width="50" align="center"></el-table-column>
								<el-table-column  prop="name" label="地区" align="center"></el-table-column>
								<el-table-column  prop="name" label="社区" align="center"></el-table-column>
								<el-table-column  prop="name" label="团队" align="center"></el-table-column>
			        			<el-table-column fixed type="index" label="序号" width="50" min-width="50" align="center"></el-table-column>
								<el-table-column fixed prop="townName" label="地区" align="center" v-if="searchJson.range == 'town'" min-width="100"></el-table-column>
								<el-table-column fixed prop="hospitalName" label="社区" align="center"  v-if="searchJson.range == 'hospital'" min-width="180"></el-table-column>
								<el-table-column fixed prop="name" label="团队" align="center" v-if="searchJson.range == 'team'" min-width="180"></el-table-column>
								<el-table-column :prop="item.prop" :label="item.label"  align="right" header-align="center" v-for="(item,index) in tableHeader" :key="index">
			                    </el-table-column>
							</el-table>
							<div class="c-t-right mt20">
								<el-pagination 
							      @size-change="handleSizeChange"
							      @current-change="handleCurrentChange"
							      :current-page.sync="currentPage"
							      :page-size="currentSize"

+ 1 - 1
app/statistics/html/home.html

@ -32,7 +32,7 @@
                <div class="fr mt10">
                    <img v-show="false" @click="open" src="../../../images/zhankai_icon.png" width="18" height="18" />
                </div>
                <div class="fr mt10 c-cursor-p" v-show="false" @click="goToPage(3)">
                <div class="fr mt10 c-cursor-p" @click="goToPage(3)">
                    <img @click="open" src="../../../images/download.png" width="18" height="18" />
                    <span class="pl5 c-333">数据导出</span>
                </div>

+ 140 - 179
app/statistics/js/comprehensive-query.js

@ -22,51 +22,7 @@ new Vue({
		years:[],
		chooseYear: '',
		userRole: '',
		treedata:  [{
          id: 1,
              prop:"aaa10",
          label: '一级 1',
          children: [{
            id: 4,
              prop:"aaa9",
            label: '二级 1-1',
            children: [{
              id: 9,
              prop:"aaa1",
              label: '三级 1-1-1'
            }, {
              id: 10,
              prop:"aaa2",
              label: '三级 1-1-2'
            }]
          }]
        }, {
          id: 2,
              prop:"aaa8",
          label: '一级 2',
          children: [{
            id: 5,
              prop:"aaa3",
            label: '二级 2-1'
          }, {
            id: 6,
              prop:"aaa4",
            label: '二级 2-2'
          }]
        }, {
          id: 3,
              prop:"aaa7",
          label: '一级 3',
          children: [{
            id: 7,
              prop:"aaa5",
            label: '二级 3-1'
          }, {
            id: 8,
              prop:"aaa6",
            label: '二级 3-2'
          }]
        }],
		treedata:  [],
		tableHeader:[],
		defaultProps: {
          children: 'children',
@ -78,9 +34,12 @@ new Vue({
        	},
		},
       	radio:'1',
       	searchJson:{},
       	currentPage:1,
       	currentSize:100,
       	datatotal:1000,
       	currentSize:10,
       	datatotal:0,
       	rangeList:[],
       	rangeCode:"",
       	areaList:[],
       	areaCode:"",
       	communityList:[{code:"",name:"全部"}],
@ -91,6 +50,24 @@ new Vue({
	components: {
		vuedals: Vuedals.Component
	},
	watch: {
	    rangeCode: function (val) {
			var vm=this
			if(vm.initlevel != 2){
				vm.communityCode=""
			}
			vm.teamCode=""
			vm.getTreeList()
	    },
	    areaCode:function(val){
			var vm=this
	    	vm.selChange(3)
	    },
	    communityCode:function(val){
			var vm=this
			vm.selChange(5)
	    },
	},
	mounted: function () {
		var vm=this
		//初始化数据
@ -102,7 +79,29 @@ new Vue({
		}
	},
	methods: {
		beforeReq:function(){
		getTreeList:function(){
			var vm=this
			statisticAPI.exportTreeList({rang:vm.rangeCode}).then(function(res){
				if(res.status == 200){
					vm.treedata = [],jindex=0
					_.each(res.data,function(item,index){
						vm.treedata.push({
							id:"p_"+jindex,
							label:index,
							children:[]
						})
						_.each(item,function(citem,cindex){
							vm.treedata[jindex].children.push({
								id:cindex,
								label:citem,
							})
						})
						jindex++
					})
				}
			})
		},
		beforeReq:function(flag){
			var vm=this,startDate="",endDate="",checked=[]
			if(vm.radio=="1"){
				startDate = getStartDate(vm.chooseYear)
@ -131,26 +130,68 @@ new Vue({
			if(checkTree.length){
				vm.tableHeader = []
				_.each(checkTree,function(item,index){
					vm.tableHeader.push({prop:item.prop,label:item.label})
					if(!flag){
						vm.tableHeader.push({prop:item.label,label:item.label})
					}
					checked.push(item.id)
				})
				console.log(JSON.stringify(vm.tableHeader))
				console.log(JSON.stringify(checked))
			}else{
				this.$message({
		          message: '请选择查询项',
		          message: '请选择搜索指标!',
		          type: 'warning'
		        });
		        return false
			}
			return {start:startDate,end:endDate}
			return {start:startDate,end:endDate,checked:checked.join(",")}
		},
		searchHandle:function(){
			var vm = this,DateJson=undefined
			var vm = this,searchJson=undefined
			console.log("before-pass")
			DateJson = vm.beforeReq()
			if(DateJson){
				console.log("pass")
			searchJson = vm.beforeReq()
			if(searchJson){
				vm.currentPage = 1
				vm.searchJson = {
					startDate:searchJson.start,
					endDate:searchJson.end,
					quotaStr:searchJson.checked,
					range:vm.rangeCode,
					team:vm.teamCode,
					hospital:vm.communityCode,
					area:vm.areaCode=="350200"?"":vm.areaCode,
					size:vm.currentSize,
					page:vm.currentPage,
				}
				vm.getStatisticDataList()
			}
		},
		getStatisticDataList:function(){
			var vm = this
			var params=JSON.parse(JSON.stringify(vm.searchJson))
			params.page = vm.currentPage
			statisticAPI.getStatisticDataList(params).then(function(res){
				if(res.status == 200) {
					vm.tabledata = res.data.data
					vm.datatotal = res.data.total
					if(vm.tabledata.length){
						vm.tableHeader=[]
						_.each(vm.tabledata[0],function(item,index){
							if(index!="town"&&index!="townName"&&index!="hospital"&&index!="hospitalName"&&index!="area"&&index!="areaName"&&index!="code"&&index!="name")
							vm.tableHeader.push({prop:index,label:index})
						})
					}
                } else {
                    vm.$message.error(res.msg)
                }
			})
		},
		exportHandle:function(){
			var vm =this
			var vm = this,searchJson=undefined
			searchJson = vm.beforeReq('export')
			if(searchJson){
				let str = httpRequest.server + 'statisticsExport/export?startDate='+searchJson.start+'&endDate='+searchJson.end+'&quotaStr='+searchJson.checked+'&range='+vm.rangeCode+'&area='+vm.areaCode+'&hospital='+vm.communityCode+'&team='+vm.teamCode
	            console.log(str)
	            window.location.href = str
			}
		},
		backClick:function(){
@ -170,28 +211,19 @@ new Vue({
			});
			$("#main").removeClass("c-hide");
		},
      	handleSizeChange:function(val) {
        	console.log(`每页 ${val} 条`);
      	},
      	handleCurrentChange:function(val) {
        	console.log(`当前页: ${val}`);
      		this.currentPage = val
      		this.getStatisticDataList()
      	},
      	initTableHeader:function() {
      		var vm=this
      		
      	},
      	//获取省市区  type:省1,市2,区3 ,社区 4   flag:是否有下级搜索
      	//获取省市区  type:区3
        getDistrict: function(type,code,name) {
            var vm=this,list = [],param=""
            if(type == 3){
            	list = [{code:code,name:name}]
            	param = "area"
            }else  if(type == 4){
            	list = [{code:"",name:"全部"}]
            	param = "community"
            }else  if(type == 5){
            	list = [{code:"",name:"全部"}]
            	param = "team"
            	param = "community"
            }
            var params={
                type:type,code:code
@ -208,25 +240,44 @@ new Vue({
        selChange:function(type){
        	var vm=this,name=""
        	if(type == 3){
        		name = _.find(vm.areaList,{code:vm.areaCode}).name
        		vm.initSelOption("community")
        		vm.initSelOption("team")
        		if(vm.areaCode != "350200"){
        			vm.getDistrict(4,vm.areaCode,name)
        		}
        	}else if(type == 4){
        		name = _.find(vm.communityList,{code:vm.communityCode}).name
        		vm.getCommunityHospital()
        	}else if(type == 5){
        		vm.initSelOption("team")
        		if(vm.areaCode){
        			vm.getDistrict(5,vm.areaCode,name)
        		}
    			vm.teamListByArea()
        	}
        },
        initSelOption:function(param){
        	var vm=this
        	vm[param+"List"]=[{code:"",name:"全部"}]
            vm[param+"Code"]=vm[param+"List"][0].code
        }
        	if(param == "team"){
        		vm[param+"List"]=[{id:"",name:"全部"}]
        	}
            vm[param+"Code"]=vm[param+"List"][0].code||vm[param+"List"][0].id
        },
        getCommunityHospital:function() {
        	var vm=this,list = [{code:"",name:"全部"}],param="community"
            homeAPI.getCommunityHospital({area:vm.areaCode=='350200'?"":vm.areaCode}).then(function(res) {
                if(res.status == 200) {
                    vm[param+"List"]=list.concat(res.data)
                    vm[param+"Code"]=vm[param+"List"][0].code
                } else {
                    vm.$message.error(res.msg)
                }
            })
		},
		teamListByArea:function() {
        	var vm=this,list = [{id:"",name:"全部"}],param="team"
            homeAPI.teamListByArea({area:vm.areaCode=='350200'?"":vm.areaCode,hospital:vm.communityCode}).then(function(res) {
                if(res.status == 200) {
                    vm[param+"List"]=list.concat(res.data)
                    vm[param+"Code"]=vm[param+"List"][0].id
                } else {
                    vm.$message.error(res.msg)
                }
            })
		}
    },
})
@ -245,18 +296,22 @@ function initData(vm) {
	vm.initarea =vm.area  = vm.userRole.code;
	vm.areaTitle = vm.userRole.name;
	
	vm.rangeList=[{name:"按区",code:"town"},{name:"按社区",code:"hospital"},{name:"按团队",code:"team"}]
	
	if(vm.initlevel == 4){   //市获取区
		vm.getDistrict(3,vm.initarea,vm.areaTitle.substr(0,3))
		vm.rangeCode = vm.rangeList[0].code
	}else if(vm.initlevel == 3){   //区获取社区
		vm.areaList = [{code:vm.initarea,name:vm.areaTitle}]
		vm.areaCode = vm.initarea
		vm.getDistrict(4,vm.initarea,vm.areaTitle)
		vm.rangeCode = vm.rangeList[0].code
	}else if(vm.initlevel == 2){   //社区获取团队
		vm.communityList = [{code:vm.initarea,name:vm.areaTitle}]
		vm.communityCode = vm.initarea
		vm.getDistrict(5,vm.initarea,vm.areaTitle)
		vm.rangeList.shift() 
		vm.rangeCode = vm.rangeList[0].code
	}
		
	vm.searchJson.range = 	vm.rangeCode
	//初始化时间
	var now = new Date();
	vm.end = now.format("yyyy-MM-dd")
@ -270,100 +325,6 @@ function initData(vm) {
		vm.years.push(i)
	}
	
	vm.tabledata = []
	vm.bindEvent()
}
function initReqParams(vm) {
	var reqParam = [{
		url: "doctor/statisticAnalyze/doorAggregateAnalysis",   //头中部数据
		reqType: 'get',
		data:{
			startDate: vm.start,
			endDate: vm.end,
			area: vm.area,
		    level: vm.areaLevel, //2、市,3、区,4、社区,5、团队
		},
	},{
		url: "doctor/statisticAnalyze/order_lowlevel_all",  //工单列表--表格
		reqType: 'get',
		data:{
			startDate: vm.start,
			endDate: vm.end,
			area: vm.area,
		    level: vm.level, //2、市,3、区,4、社区,5、团队
		    sort: 1,
		    lowLevel:vm.lowLevel||"",  //等级 1:团队 2社区机构 3区级 4市级
		},
	},]
	return reqParam;
}
function loadData(loadArr, vm) {
	//获取其他请求的参数
	var reqParams = initReqParams(vm),
		reqPromise = [],
		newArr = []; //记录非顶部请求的请求数组
	for (i = 0; i < loadArr.length; i++) {
		var j = loadArr[i];
		var param = reqParams[j];
		reqPromise.push(httpRequest.get(param.url, {
			data: param.data
		}));
		newArr.push(loadArr[i]);
	}
	vm.isloading=true    
	if (reqPromise.length > 0) {
		Promise.all(reqPromise).then(function (ress) {
			var res1, res2, res3, res4, res5;
			for (var i = 0; i < loadArr.length; i++) {
				var j = loadArr[i] + 1;
				if (j == 1) { res1 = ress[i]; }
				if (j == 2) { res2 = ress[i]; }
				if (j == 3) { res3 = ress[i]; }
				if (j == 4) { res4 = ress[i]; }
				if (j == 5) { res5 = ress[i]; }
			}
			if (res1 && res1.status == 200) {
				vm.topData=res1.data
//				vm.topData.evaluateSplit=parseFloat(vm.topData.evaluateSplit).toFixed(2)
				var voucherList=_.map(vm.topData.voucherList,function(item,index){
					return {
						code:item.slaveKey1,
						amount:item.result1,
						name:item.slaveKey1Name,
					}
				})
				if(voucherList.length==0||(voucherList.length==1&&!voucherList.name)){
					vm.pieShow=false
				}else{
					vm.pieShow=true
				}
				setTimeout(function(){						
					//服务人群分析-饼图
					handlePieData({elId:"pieChart",arry: voucherList, title:{},colors: colors,param:"total",position:['30%', '51%'],radius:['75%', '90%']})
					handlePieData({elId:"pieChart1",arry: voucherList, title:{},colors: colors,param:"total",position:['30%', '51%'],radius:['75%', '90%']})
				},10)
			}
			if (res2 && res2.status == 200) {
				vm.tabledata0=listHandle(res2.data["index_121"],"all", vm);
			}
			vm.isloading=false
		})
	}
}
function listHandle(list,param, vm){
    var topArr = [];
    if(list.length==1&&!list[0].name){
    	list=[]
    }
    topArr = soreRank(getKeyValueArr(list, param||"amount"));
    var newlist = _.map(list, function(o, index){
    	o.rank=topArr[index]
    	return o
    });
    EventBus.$emit("render-area-data",{
    });
    return newlist
}