|
@ -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+'"aStr='+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
|
|
|
}
|