24 changed files with 7001 additions and 4733 deletions
File diff suppressed because it is too large
Load Diff
@ -1,187 +1,230 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
import { Router } from '@angular/router'; |
||||
import { HttpClient } from '@angular/common/http' |
||||
import {EchartsDataService,} from '../../echarts-data.service' |
||||
import { map } from 'rxjs/operators'; |
||||
import { Component, OnInit } from "@angular/core"; |
||||
import { Router } from "@angular/router"; |
||||
import { HttpClient } from "@angular/common/http"; |
||||
import { EchartsDataService } from "../../echarts-data.service"; |
||||
import { map } from "rxjs/operators"; |
||||
declare var echarts: any; |
||||
@Component({ |
||||
selector: 'app-building-type-one', |
||||
templateUrl: './building-type-one.component.html', |
||||
styleUrls: ['./building-type-one.component.scss'] |
||||
selector: "app-building-type-one", |
||||
templateUrl: "./building-type-one.component.html", |
||||
styleUrls: ["./building-type-one.component.scss"], |
||||
}) |
||||
export class BuildingTypeOneComponent implements OnInit { |
||||
|
||||
constructor(private http:HttpClient,private router: Router,public echartsData:EchartsDataService) { } |
||||
constructor( |
||||
private http: HttpClient, |
||||
private router: Router, |
||||
public echartsData: EchartsDataService |
||||
) {} |
||||
|
||||
ngOnInit(): void { |
||||
if(window.matchMedia("(max-width: 1400px)").matches){ |
||||
this.padHw=true |
||||
if (window.matchMedia("(max-width: 1400px)").matches) { |
||||
this.padHw = true; |
||||
//this.padjt=
|
||||
}else{ |
||||
this.padHw=false |
||||
} else { |
||||
this.padHw = false; |
||||
} |
||||
|
||||
window.setTimeout(()=>{ |
||||
this.getechartsdata() |
||||
}) |
||||
|
||||
window.setTimeout(() => { |
||||
this.getechartsdata(); |
||||
}); |
||||
} |
||||
ngOnDestroy(): void { |
||||
this.indexBzt.clear() |
||||
this.indexBzt.dispose() |
||||
if (!this.indexBzt) { |
||||
return; |
||||
} |
||||
this.indexBzt.clear(); |
||||
this.indexBzt.dispose(); |
||||
} |
||||
async getechartsdata(){ |
||||
await this.echartsData.getData(null,`/api/StatisticsAnalysis/BuildingTypes`) |
||||
this.initCharts() |
||||
async getechartsdata() { |
||||
await this.echartsData.getData( |
||||
null, |
||||
`/api/StatisticsAnalysis/BuildingTypes` |
||||
); |
||||
this.initCharts(); |
||||
} |
||||
/* 首页饼状图 */ |
||||
indexBzt |
||||
padHw |
||||
lengthdata=[]//提示数据
|
||||
count=0//总数
|
||||
indexData=[]//所有数据
|
||||
tabledata |
||||
initCharts(){ |
||||
if(sessionStorage.getItem('refresh') === 'true') { |
||||
sessionStorage.removeItem('refresh'); |
||||
indexBzt; |
||||
padHw; |
||||
lengthdata = []; //提示数据
|
||||
count = 0; //总数
|
||||
indexData = []; //所有数据
|
||||
tabledata; |
||||
initCharts() { |
||||
if (sessionStorage.getItem("refresh") === "true") { |
||||
sessionStorage.removeItem("refresh"); |
||||
location.reload(); |
||||
} |
||||
this.tabledata=JSON.parse(JSON.stringify(this.echartsData.allDate)) |
||||
// console.log(this.tabledata)
|
||||
//console.log(this.echartsData.orid)
|
||||
for(var i=0;i<this.tabledata[0].buildingTypes.length;i++){ |
||||
this.lengthdata.push(this.tabledata[0].buildingTypes[i].buildingTypeName) |
||||
this.count=this.count+this.tabledata[0].buildingTypes[i].count |
||||
this.indexData.push(this.tabledata[0].buildingTypes[i]) |
||||
} |
||||
//JSON.parse(JSON.stringify(this.indexData).replace(/buildingTypeName/g, 'name'))
|
||||
this.indexData=this.indexData.map(v=>{return {name: v.buildingTypeName,value:v.count,id:v.buildingTypeId}}) |
||||
//console.log(this.indexData)
|
||||
this.indexBzt = echarts.init(document.getElementById('indexBzt'),'walden'); |
||||
let options={ |
||||
} |
||||
this.tabledata = JSON.parse(JSON.stringify(this.echartsData.allDate)); |
||||
// console.log(this.tabledata)
|
||||
//console.log(this.echartsData.orid)
|
||||
for (var i = 0; i < this.tabledata[0].buildingTypes.length; i++) { |
||||
this.lengthdata.push(this.tabledata[0].buildingTypes[i].buildingTypeName); |
||||
this.count = this.count + this.tabledata[0].buildingTypes[i].count; |
||||
this.indexData.push(this.tabledata[0].buildingTypes[i]); |
||||
} |
||||
//JSON.parse(JSON.stringify(this.indexData).replace(/buildingTypeName/g, 'name'))
|
||||
this.indexData = this.indexData.map((v) => { |
||||
return { name: v.buildingTypeName, value: v.count, id: v.buildingTypeId }; |
||||
}); |
||||
//console.log(this.indexData)
|
||||
this.indexBzt = echarts.init(document.getElementById("indexBzt"), "walden"); |
||||
let options = { |
||||
title: { |
||||
text: `建筑类型统计(${this.count}家)`, |
||||
left: 'center', |
||||
top: "7%", |
||||
textStyle: { |
||||
fontSize:31 |
||||
} |
||||
left: "center", |
||||
top: "7%", |
||||
textStyle: { |
||||
fontSize: 31, |
||||
}, |
||||
}, |
||||
tooltip: { |
||||
trigger: 'item', |
||||
trigger: "item", |
||||
position: this.echartsData.tableTooltipNoShow2, |
||||
formatter: (params)=>{ |
||||
this.echartsData.biaogeTishiZhi(params.data) |
||||
return this.echartsData.res |
||||
} |
||||
formatter: (params) => { |
||||
this.echartsData.biaogeTishiZhi(params.data); |
||||
return this.echartsData.res; |
||||
}, |
||||
}, |
||||
legend: { |
||||
orient: 'vertical', |
||||
orient: "vertical", |
||||
//left:this.padHw?50:0,
|
||||
right:this.padHw?20:250, |
||||
top:60, |
||||
textStyle:{ |
||||
fontSize:18, |
||||
color:"#000000" |
||||
},
|
||||
data: this.lengthdata |
||||
right: this.padHw ? 20 : 250, |
||||
top: 60, |
||||
textStyle: { |
||||
fontSize: 18, |
||||
color: "#000000", |
||||
}, |
||||
data: this.lengthdata, |
||||
}, |
||||
series: [ |
||||
{ |
||||
top:this.padHw?'15%':'0', |
||||
name: '访问来源', |
||||
type: 'pie', |
||||
radius: '60%', |
||||
center: ['50%', '53%'], |
||||
label:{ |
||||
show:true, |
||||
fontSize:18, |
||||
formatter:'{b}{c}家\n{d|({d}%)}', |
||||
top: this.padHw ? "15%" : "0", |
||||
name: "访问来源", |
||||
type: "pie", |
||||
radius: "60%", |
||||
center: ["50%", "53%"], |
||||
label: { |
||||
show: true, |
||||
fontSize: 18, |
||||
formatter: "{b}{c}家\n{d|({d}%)}", |
||||
rich: { |
||||
d: { |
||||
align: 'center', |
||||
fontSize:18 |
||||
} |
||||
align: "center", |
||||
fontSize: 18, |
||||
}, |
||||
}, |
||||
}, |
||||
data:this.indexData, |
||||
data: this.indexData, |
||||
emphasis: { |
||||
itemStyle: { |
||||
shadowBlur: 10, |
||||
shadowOffsetX: 0, |
||||
shadowColor: 'rgba(0, 0, 0, 0.5)' |
||||
} |
||||
} |
||||
} |
||||
] |
||||
shadowColor: "rgba(0, 0, 0, 0.5)", |
||||
}, |
||||
}, |
||||
}, |
||||
], |
||||
}; |
||||
this.indexBzt.on('click', (params) => { |
||||
var index=0 |
||||
for(var i=0;i<this.tabledata[0].buildingTypes.length;i++){ |
||||
if(this.tabledata[0].buildingTypes[i].buildingTypeName==params.name){ |
||||
if((this.echartsData.level=='0'||this.echartsData.level=='1'||this.echartsData.level=='2')&&this.tabledata[0].buildingTypes[i].organizations.length>0){ |
||||
this.indexBzt.on("click", (params) => { |
||||
var index = 0; |
||||
for (var i = 0; i < this.tabledata[0].buildingTypes.length; i++) { |
||||
if ( |
||||
this.tabledata[0].buildingTypes[i].buildingTypeName == params.name |
||||
) { |
||||
if ( |
||||
(this.echartsData.level == "0" || |
||||
this.echartsData.level == "1" || |
||||
this.echartsData.level == "2") && |
||||
this.tabledata[0].buildingTypes[i].organizations.length > 0 |
||||
) { |
||||
//总队,支队,大队跳转
|
||||
this.tabledata[0].buildingTypes[i].organizations.forEach((value,index,array) => { |
||||
if(array[index].organizationId==this.echartsData.orid){ |
||||
array.splice(index,1) |
||||
this.tabledata[0].buildingTypes[i].organizations.forEach( |
||||
(value, index, array) => { |
||||
if (array[index].organizationId == this.echartsData.orid) { |
||||
array.splice(index, 1); |
||||
} |
||||
if (array.length > 0) { |
||||
this.router.navigate( |
||||
[ |
||||
"/statisticanalysis/buildingType_one/buildingType_two_reverse", |
||||
], |
||||
{ queryParams: { level: params.name, id: params.data.id } } |
||||
); |
||||
} else { |
||||
this.router.navigate(["/statisticanalysis/CompangInfo"], { |
||||
queryParams: { |
||||
name: params.name, |
||||
type: 1, |
||||
buildid: params.data.id, |
||||
}, |
||||
}); |
||||
} |
||||
} |
||||
if(array.length>0){ |
||||
this.router.navigate(['/statisticanalysis/buildingType_one/buildingType_two_reverse'],{queryParams:{'level':params.name,'id':params.data.id}}); |
||||
}else{ |
||||
this.router.navigate(['/statisticanalysis/CompangInfo'],{queryParams:{'name':params.name,'type':1,'buildid':params.data.id}}); |
||||
} |
||||
}); |
||||
|
||||
}else { |
||||
); |
||||
} else { |
||||
//中队跳转
|
||||
this.router.navigate(['/statisticanalysis/CompangInfo'],{queryParams:{'name':params.name,'type':1,'buildid':params.data.id}}); |
||||
this.router.navigate(["/statisticanalysis/CompangInfo"], { |
||||
queryParams: { |
||||
name: params.name, |
||||
type: 1, |
||||
buildid: params.data.id, |
||||
}, |
||||
}); |
||||
} |
||||
} |
||||
} |
||||
|
||||
|
||||
|
||||
}); |
||||
this.indexBzt.setOption(options); |
||||
|
||||
|
||||
|
||||
} |
||||
tishiData |
||||
res:string |
||||
biaogeTishiZhi(datas){ |
||||
for(var a in this.tabledata.buildingTypes){ |
||||
if(this.tabledata.buildingTypes[a].buildingTypeId==datas.id){ |
||||
this.tishiData=this.tabledata.buildingTypes[a].organizations |
||||
tishiData; |
||||
res: string; |
||||
biaogeTishiZhi(datas) { |
||||
for (var a in this.tabledata.buildingTypes) { |
||||
if (this.tabledata.buildingTypes[a].buildingTypeId == datas.id) { |
||||
this.tishiData = this.tabledata.buildingTypes[a].organizations; |
||||
} |
||||
} |
||||
var countall=0//总计
|
||||
var countbi=0//站比
|
||||
var allCountbi=0//总站比
|
||||
for(var i=0;i<this.tishiData.length;i++){ |
||||
countall+=this.tishiData[i].count |
||||
} |
||||
this.res= '<div class="tishi" style=" backgroundColor:rgba(255,255,255,1);width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span style="color:#FFFFFF;font-size:27px;text-align: center;display:block;">'+datas.name+'</span></div>' |
||||
this.res+='</br><div style="width:300px;height:100%;padding:0 20px 15px 20px"><table style="width:300px;font-size:16px; color:#FFFFFF;border-collapse:collapse;"cellspacing="0"; >'; |
||||
this.res+='<thead style="font-size:18px;"><tr>'; |
||||
this.res+='<td style="text-align:center;width:30%;">名称</td>'; |
||||
this.res+='<td style="text-align:center;width:30%;">数量</td>' |
||||
this.res+='<td style="text-align:center;width:30%;">总占比</td>' |
||||
this.res+='</tr></thead>' |
||||
this.res+='<tbody>'; |
||||
//var res='<div class="tishi" style=" width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span >'+biaotou+'</span></div>'
|
||||
for(var i=0;i<this.tishiData.length;i++){ |
||||
countbi=Math.round(this.tishiData[i].count/countall* 10000)/ 100.00 |
||||
allCountbi=allCountbi+countbi |
||||
this.res+='<tr>' |
||||
this.res+='<td style="text-align:center;">'+this.tishiData[i].organizationName+'</td>' |
||||
this.res+='<td style="text-align:center;">'+this.tishiData[i].count+'</td>' |
||||
this.res+='<td style="text-align:center;">'+countbi+'%</td></tr>' |
||||
} |
||||
|
||||
this.res+='</tbody>' |
||||
this.res+='<tfoot style="font-size:18px;"><td style="text-align:center;">总计</td><td style="text-align:center;">'+countall+'</td><td style="text-align:center;">'+allCountbi.toFixed(2)+'%</td></tfoot>' |
||||
this.res+='</table></div></div>' |
||||
return this.res |
||||
|
||||
} |
||||
var countall = 0; //总计
|
||||
var countbi = 0; //站比
|
||||
var allCountbi = 0; //总站比
|
||||
for (var i = 0; i < this.tishiData.length; i++) { |
||||
countall += this.tishiData[i].count; |
||||
} |
||||
this.res = |
||||
'<div class="tishi" style=" backgroundColor:rgba(255,255,255,1);width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span style="color:#FFFFFF;font-size:27px;text-align: center;display:block;">' + |
||||
datas.name + |
||||
"</span></div>"; |
||||
this.res += |
||||
'</br><div style="width:300px;height:100%;padding:0 20px 15px 20px"><table style="width:300px;font-size:16px; color:#FFFFFF;border-collapse:collapse;"cellspacing="0"; >'; |
||||
this.res += '<thead style="font-size:18px;"><tr>'; |
||||
this.res += '<td style="text-align:center;width:30%;">名称</td>'; |
||||
this.res += '<td style="text-align:center;width:30%;">数量</td>'; |
||||
this.res += '<td style="text-align:center;width:30%;">总占比</td>'; |
||||
this.res += "</tr></thead>"; |
||||
this.res += "<tbody>"; |
||||
//var res='<div class="tishi" style=" width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span >'+biaotou+'</span></div>'
|
||||
for (var i = 0; i < this.tishiData.length; i++) { |
||||
countbi = |
||||
Math.round((this.tishiData[i].count / countall) * 10000) / 100.0; |
||||
allCountbi = allCountbi + countbi; |
||||
this.res += "<tr>"; |
||||
this.res += |
||||
'<td style="text-align:center;">' + |
||||
this.tishiData[i].organizationName + |
||||
"</td>"; |
||||
this.res += |
||||
'<td style="text-align:center;">' + this.tishiData[i].count + "</td>"; |
||||
this.res += '<td style="text-align:center;">' + countbi + "%</td></tr>"; |
||||
} |
||||
|
||||
this.res += "</tbody>"; |
||||
this.res += |
||||
'<tfoot style="font-size:18px;"><td style="text-align:center;">总计</td><td style="text-align:center;">' + |
||||
countall + |
||||
'</td><td style="text-align:center;">' + |
||||
allCountbi.toFixed(2) + |
||||
"%</td></tfoot>"; |
||||
this.res += "</table></div></div>"; |
||||
return this.res; |
||||
} |
||||
} |
||||
|
@ -1,239 +1,316 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
import { Router } from '@angular/router'; |
||||
import { ActivatedRoute } from '@angular/router'; |
||||
import { Local } from 'protractor/built/driverProviders'; |
||||
import {EchartsDataService} from '../../echarts-data.service'; |
||||
import { Component, OnInit } from "@angular/core"; |
||||
import { Router } from "@angular/router"; |
||||
import { ActivatedRoute } from "@angular/router"; |
||||
import { Local } from "protractor/built/driverProviders"; |
||||
import { EchartsDataService } from "../../echarts-data.service"; |
||||
declare var echarts: any; |
||||
@Component({ |
||||
selector: 'app-building-type-three-details', |
||||
templateUrl: './building-type-three-details.component.html', |
||||
styleUrls: ['./building-type-three-details.component.scss'] |
||||
selector: "app-building-type-three-details", |
||||
templateUrl: "./building-type-three-details.component.html", |
||||
styleUrls: ["./building-type-three-details.component.scss"], |
||||
}) |
||||
export class BuildingTypeThreeDetailsComponent implements OnInit { |
||||
|
||||
constructor(public route: ActivatedRoute,private router: Router,public echartsData:EchartsDataService) { } |
||||
forward(){ |
||||
this.router.navigate(['/statisticanalysis/buildingType_one/buildingType_two_forward']) |
||||
constructor( |
||||
public route: ActivatedRoute, |
||||
private router: Router, |
||||
public echartsData: EchartsDataService |
||||
) {} |
||||
forward() { |
||||
this.router.navigate([ |
||||
"/statisticanalysis/buildingType_one/buildingType_two_forward", |
||||
]); |
||||
} |
||||
reverse(){ |
||||
this.router.navigate(['/statisticanalysis/buildingType_one/buildingType_two_reverse']) |
||||
reverse() { |
||||
this.router.navigate([ |
||||
"/statisticanalysis/buildingType_one/buildingType_two_reverse", |
||||
]); |
||||
} |
||||
//返回
|
||||
goBack () { |
||||
sessionStorage.setItem('refresh', 'true'); |
||||
goBack() { |
||||
sessionStorage.setItem("refresh", "true"); |
||||
history.go(-1); |
||||
this.echartsData.statefulInspectionToggle = true |
||||
this.echartsData.statefulInspectionToggle = true; |
||||
} |
||||
|
||||
organizationName:String |
||||
listorganizationId//上个页面传过来的组织id
|
||||
buildingTypeName:String |
||||
buildingTypeId |
||||
organizationId=[]//本层id
|
||||
padHw |
||||
organizationName: String; |
||||
listorganizationId; //上个页面传过来的组织id
|
||||
buildingTypeName: String; |
||||
buildingTypeId; |
||||
organizationId = []; //本层id
|
||||
padHw; |
||||
|
||||
ngOnInit(): void { |
||||
if(window.matchMedia("(max-width: 1300px)").matches){ |
||||
this.padHw=true |
||||
if (window.matchMedia("(max-width: 1300px)").matches) { |
||||
this.padHw = true; |
||||
//this.padjt=
|
||||
}else{ |
||||
this.padHw=false |
||||
} else { |
||||
this.padHw = false; |
||||
} |
||||
if(sessionStorage.getItem('refresh') === 'true') { |
||||
sessionStorage.removeItem('refresh'); |
||||
if (sessionStorage.getItem("refresh") === "true") { |
||||
sessionStorage.removeItem("refresh"); |
||||
location.reload(); |
||||
} |
||||
this.route.queryParams.subscribe(params => { |
||||
this.organizationName = params['organizationName']; |
||||
this.buildingTypeName = params['buildingTypeName']; |
||||
this.listorganizationId=params['organizationId']; |
||||
this.buildingTypeId=params['buildId']; |
||||
} |
||||
this.route.queryParams.subscribe((params) => { |
||||
this.organizationName = params["organizationName"]; |
||||
this.buildingTypeName = params["buildingTypeName"]; |
||||
this.listorganizationId = params["organizationId"]; |
||||
this.buildingTypeId = params["buildId"]; |
||||
}); |
||||
|
||||
window.setTimeout(() => { |
||||
this.getechartsdata(); |
||||
}); |
||||
|
||||
|
||||
window.setTimeout(()=>{ |
||||
this.getechartsdata() |
||||
}) |
||||
} |
||||
|
||||
|
||||
ngOnDestroy(): void { |
||||
this.detailPlanEchart.clear() |
||||
this.detailPlanEchart.dispose() |
||||
if (!this.detailPlanEchart) { |
||||
return; |
||||
} |
||||
this.detailPlanEchart.clear(); |
||||
this.detailPlanEchart.dispose(); |
||||
} |
||||
async getechartsdata(){ |
||||
let paramsdata={ |
||||
async getechartsdata() { |
||||
let paramsdata = { |
||||
//id:this.buildingTypeId,
|
||||
organizationId:this.listorganizationId |
||||
organizationId: this.listorganizationId, |
||||
}; |
||||
await this.echartsData.getData( |
||||
paramsdata, |
||||
`/api/StatisticsAnalysis/Companies/BuildingTypes/${this.buildingTypeId}` |
||||
); |
||||
this.tabledata = JSON.parse(JSON.stringify(this.echartsData.allDate)); |
||||
//console.log(this.tabledata)
|
||||
for (var i = 0; i < this.tabledata[0].organizations.length; i++) { |
||||
this.zhongNameData.push( |
||||
this.tabledata[0].organizations[i].organizationName |
||||
); |
||||
this.zhongNumData.push(this.tabledata[0].organizations[i].count); |
||||
this.organizationId.push( |
||||
this.tabledata[0].organizations[i].organizationId |
||||
); |
||||
} |
||||
await this.echartsData.getData(paramsdata,`/api/StatisticsAnalysis/Companies/BuildingTypes/${this.buildingTypeId}`) |
||||
this.tabledata=JSON.parse(JSON.stringify(this.echartsData.allDate)) |
||||
//console.log(this.tabledata)
|
||||
for(var i=0;i<this.tabledata[0].organizations.length;i++){ |
||||
this.zhongNameData.push(this.tabledata[0].organizations[i].organizationName) |
||||
this.zhongNumData.push(this.tabledata[0].organizations[i].count) |
||||
this.organizationId.push(this.tabledata[0].organizations[i].organizationId) |
||||
} |
||||
this.tiaoshiPao=this.echartsData.qipao(this.tiaoshiPao,this.zhongNumData,this.zhongNameData) |
||||
this.detailEcharts() |
||||
this.tiaoshiPao = this.echartsData.qipao( |
||||
this.tiaoshiPao, |
||||
this.zhongNumData, |
||||
this.zhongNameData |
||||
); |
||||
this.detailEcharts(); |
||||
} |
||||
topTextlabel = { |
||||
show: true, // 开启显示
|
||||
position: 'top', // 在上方显示
|
||||
position: "top", // 在上方显示
|
||||
distance: 10, // 距离图形元素的距离。当 position 为字符描述值(如 'top'、'insideRight')时候有效。
|
||||
verticalAlign: 'middle', |
||||
textStyle: { // 数值样式
|
||||
color: 'black', |
||||
fontSize: 12 |
||||
} |
||||
}//柱状图数值顶部显示
|
||||
zhongNameData = [] |
||||
zhongNumData = [] |
||||
tiaoshiPao:any |
||||
detailPlanEchart |
||||
tabledata |
||||
detailEcharts(){ |
||||
this.detailPlanEchart = echarts.init(document.getElementById('barEchart'),'walden');
|
||||
verticalAlign: "middle", |
||||
textStyle: { |
||||
// 数值样式
|
||||
color: "black", |
||||
fontSize: 12, |
||||
}, |
||||
}; //柱状图数值顶部显示
|
||||
zhongNameData = []; |
||||
zhongNumData = []; |
||||
tiaoshiPao: any; |
||||
detailPlanEchart; |
||||
tabledata; |
||||
detailEcharts() { |
||||
this.detailPlanEchart = echarts.init( |
||||
document.getElementById("barEchart"), |
||||
"walden" |
||||
); |
||||
var option = { |
||||
title: { |
||||
top:this.padHw?10:0, |
||||
text: this.buildingTypeName + '(' +this.organizationName + ')'+`:总数(${this.tabledata[0].totalCount})`, |
||||
top: this.padHw ? 10 : 0, |
||||
text: |
||||
this.buildingTypeName + |
||||
"(" + |
||||
this.organizationName + |
||||
")" + |
||||
`:总数(${this.tabledata[0].totalCount})`, |
||||
left: "center", |
||||
textStyle: { |
||||
fontSize: 30 |
||||
} |
||||
fontSize: 30, |
||||
}, |
||||
}, |
||||
grid: { |
||||
top:this.padHw?120:110, |
||||
top: this.padHw ? 120 : 110, |
||||
//bottom: 10
|
||||
}, |
||||
}, |
||||
xAxis: { |
||||
id:this.organizationId, |
||||
type: 'category', |
||||
data: this.zhongNameData, |
||||
// axisLabel: this.axisLabel
|
||||
axisLabel:{ |
||||
//this.axisLabel,
|
||||
textStyle:{ |
||||
fontSize :18, |
||||
color:'#000000' |
||||
} |
||||
|
||||
} |
||||
id: this.organizationId, |
||||
type: "category", |
||||
data: this.zhongNameData, |
||||
// axisLabel: this.axisLabel
|
||||
axisLabel: { |
||||
//this.axisLabel,
|
||||
textStyle: { |
||||
fontSize: 18, |
||||
color: "#000000", |
||||
}, |
||||
}, |
||||
}, |
||||
yAxis: { |
||||
type: 'value', |
||||
axisLabel:{ |
||||
//this.axisLabel,
|
||||
textStyle:{ |
||||
fontSize :18, |
||||
color:'#000000' |
||||
} |
||||
|
||||
} |
||||
type: "value", |
||||
axisLabel: { |
||||
//this.axisLabel,
|
||||
textStyle: { |
||||
fontSize: 18, |
||||
color: "#000000", |
||||
}, |
||||
}, |
||||
}, |
||||
tooltip: { |
||||
trigger: 'item', |
||||
formatter: (params)=>{ |
||||
return this.tableTooltip(params) |
||||
} |
||||
trigger: "item", |
||||
formatter: (params) => { |
||||
return this.tableTooltip(params); |
||||
}, |
||||
}, |
||||
series: [{ |
||||
id:this.organizationId, |
||||
series: [ |
||||
{ |
||||
id: this.organizationId, |
||||
data: this.zhongNumData, |
||||
type: 'bar', |
||||
barWidth :'38', |
||||
type: "bar", |
||||
barWidth: "38", |
||||
markPoint: { |
||||
symbolSize:[65, 65], |
||||
data: this.tiaoshiPao |
||||
}, |
||||
symbolSize: [65, 65], |
||||
data: this.tiaoshiPao, |
||||
}, |
||||
backgroundStyle: { |
||||
color: 'rgba(220, 220, 220, 0.8)' |
||||
color: "rgba(220, 220, 220, 0.8)", |
||||
}, |
||||
//label: this.topTextlabel
|
||||
}] |
||||
}, |
||||
], |
||||
}; |
||||
this.detailPlanEchart.setOption(option); |
||||
this.detailPlanEchart.getZr().on('click', (params) => { |
||||
const pointInPixel= [params.offsetX, params.offsetY]; |
||||
if (this.detailPlanEchart.containPixel('grid',pointInPixel)) { |
||||
let xIndex=this.detailPlanEchart.convertFromPixel({seriesIndex:0},[params.offsetX, params.offsetY])[0]; |
||||
this.detailPlanEchart.getZr().on("click", (params) => { |
||||
const pointInPixel = [params.offsetX, params.offsetY]; |
||||
if (this.detailPlanEchart.containPixel("grid", pointInPixel)) { |
||||
let xIndex = this.detailPlanEchart.convertFromPixel( |
||||
{ seriesIndex: 0 }, |
||||
[params.offsetX, params.offsetY] |
||||
)[0]; |
||||
/*事件处理代码书写位置*/ |
||||
if(this.echartsData.level=="0"&&this.tiao==false&&this.tabledata[0].organizations[xIndex].subOrganizations.length>=1){ |
||||
if ( |
||||
this.echartsData.level == "0" && |
||||
this.tiao == false && |
||||
this.tabledata[0].organizations[xIndex].subOrganizations.length >= 1 |
||||
) { |
||||
//总队不跳转
|
||||
this.zhongNameData=[] |
||||
this.zhongNumData=[] |
||||
this.organizationId=[] |
||||
this.tiaoshiPao='' |
||||
let paramsdatee={ |
||||
id:this.buildingTypeId, |
||||
organizationId:option.xAxis.id[xIndex] |
||||
} |
||||
this.echartsData.getData(paramsdatee,`/api/StatisticsAnalysis/Companies/BuildingTypes/${this.buildingTypeId}`) |
||||
window.setTimeout(()=>{ |
||||
this.tabledata=JSON.parse(JSON.stringify(this.echartsData.allDate)) |
||||
this.zhongNameData = []; |
||||
this.zhongNumData = []; |
||||
this.organizationId = []; |
||||
this.tiaoshiPao = ""; |
||||
let paramsdatee = { |
||||
id: this.buildingTypeId, |
||||
organizationId: option.xAxis.id[xIndex], |
||||
}; |
||||
this.echartsData.getData( |
||||
paramsdatee, |
||||
`/api/StatisticsAnalysis/Companies/BuildingTypes/${this.buildingTypeId}` |
||||
); |
||||
window.setTimeout(() => { |
||||
this.tabledata = JSON.parse( |
||||
JSON.stringify(this.echartsData.allDate) |
||||
); |
||||
//console.log(this.tabledata)
|
||||
for(var i=0;i<this.tabledata[0].organizations.length;i++){ |
||||
this.zhongNameData.push(this.tabledata[0].organizations[i].organizationName) |
||||
this.zhongNumData.push(this.tabledata[0].organizations[i].count) |
||||
this.organizationId.push(this.tabledata[0].organizations[i].organizationId) |
||||
for (var i = 0; i < this.tabledata[0].organizations.length; i++) { |
||||
this.zhongNameData.push( |
||||
this.tabledata[0].organizations[i].organizationName |
||||
); |
||||
this.zhongNumData.push(this.tabledata[0].organizations[i].count); |
||||
this.organizationId.push( |
||||
this.tabledata[0].organizations[i].organizationId |
||||
); |
||||
} |
||||
option.title.text = this.buildingTypeName + '(' +option.xAxis.data[xIndex]+ ')'+`:总数(${this.tabledata[0].totalCount})` |
||||
option.xAxis.data = this.zhongNameData |
||||
option.series[0].data = this.zhongNumData |
||||
this.tiaoshiPao=this.echartsData.qipao(this.tiaoshiPao,this.zhongNumData,this.zhongNameData) |
||||
option.series[0].markPoint.data=this.tiaoshiPao |
||||
option.title.text = |
||||
this.buildingTypeName + |
||||
"(" + |
||||
option.xAxis.data[xIndex] + |
||||
")" + |
||||
`:总数(${this.tabledata[0].totalCount})`; |
||||
option.xAxis.data = this.zhongNameData; |
||||
option.series[0].data = this.zhongNumData; |
||||
this.tiaoshiPao = this.echartsData.qipao( |
||||
this.tiaoshiPao, |
||||
this.zhongNumData, |
||||
this.zhongNameData |
||||
); |
||||
option.series[0].markPoint.data = this.tiaoshiPao; |
||||
//option.series[0].id=this.organizationId
|
||||
option.xAxis.id=this.organizationId |
||||
this.detailPlanEchart.clear() |
||||
this.detailPlanEchart.setOption(option) |
||||
|
||||
option.xAxis.id = this.organizationId; |
||||
this.detailPlanEchart.clear(); |
||||
this.detailPlanEchart.setOption(option); |
||||
|
||||
//this.detailEcharts()
|
||||
},1000) |
||||
this.tiao=true |
||||
}, 1000); |
||||
this.tiao = true; |
||||
} else { |
||||
this.router.navigate(["/statisticanalysis/CompangInfo"], { |
||||
queryParams: { |
||||
name: option.xAxis.data[xIndex], |
||||
type: 1, |
||||
jsid: option.xAxis.id[xIndex], |
||||
buildid: this.buildingTypeId, |
||||
}, |
||||
}); |
||||
} |
||||
else{ |
||||
this.router.navigate(['/statisticanalysis/CompangInfo'],{queryParams:{'name':option.xAxis.data[xIndex],'type':1,'jsid':option.xAxis.id[xIndex],'buildid':this.buildingTypeId}}); |
||||
} |
||||
|
||||
} |
||||
}); |
||||
} |
||||
|
||||
tiao=false |
||||
tishiData |
||||
res |
||||
tableTooltip(datas:any){ |
||||
for(var a in this.echartsData.obdata[0].organizations){ |
||||
if(this.echartsData.obdata[0].organizations[a].organizationName==datas.name){ |
||||
this.tishiData=this.echartsData.obdata[0].organizations[a].subOrganizations |
||||
tiao = false; |
||||
tishiData; |
||||
res; |
||||
tableTooltip(datas: any) { |
||||
for (var a in this.echartsData.obdata[0].organizations) { |
||||
if ( |
||||
this.echartsData.obdata[0].organizations[a].organizationName == |
||||
datas.name |
||||
) { |
||||
this.tishiData = |
||||
this.echartsData.obdata[0].organizations[a].subOrganizations; |
||||
} |
||||
} |
||||
var countall=0//总计
|
||||
var countbi=0//站比
|
||||
var allCountbi=0//总站比
|
||||
for(var i=0;i<this.tishiData.length;i++){ |
||||
countall+=this.tishiData[i].count |
||||
} |
||||
this.res= '<div class="tishi" style=" backgroundColor:rgba(255,255,255,1);width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span style="color:#FFFFFF;font-size:27px;text-align: center;display:block;">'+datas.name+'</span></div>' |
||||
this.res+='</br><div style="width:300px;height:100%;padding:0 20px 15px 20px"><table style="width:300px;font-size:16px; color:#FFFFFF;border-collapse:collapse;"cellspacing="0"; >'; |
||||
this.res+='<thead style="font-size:18px;"><tr>'; |
||||
this.res+='<td style="text-align:center;width:30%;">名称</td>'; |
||||
this.res+='<td style="text-align:center;width:30%;">数量</td>' |
||||
this.res+='<td style="text-align:center;width:30%;">总占比</td>' |
||||
this.res+='</tr></thead>' |
||||
this.res+='<tbody>'; |
||||
for(var i=0;i<this.tishiData.length;i++){ |
||||
countbi=Math.round(this.tishiData[i].count/countall* 10000)/ 100.00 |
||||
allCountbi=allCountbi+countbi |
||||
this.res+='<tr>' |
||||
this.res+='<td style="text-align:center;">'+this.tishiData[i].organizationName+'</td>' |
||||
this.res+='<td style="text-align:center;">'+this.tishiData[i].count+'</td>' |
||||
this.res+='<td style="text-align:center;">'+countbi+'%</td></tr>' |
||||
} |
||||
|
||||
this.res+='</tbody>' |
||||
this.res+='<tfoot style="font-size:18px;"><td style="text-align:center;">总计</td><td style="text-align:center;">'+countall+'</td><td style="text-align:center;">'+allCountbi.toFixed(2)+'%</td></tfoot>' |
||||
this.res+='</table></div></div>' |
||||
return this.res |
||||
var countall = 0; //总计
|
||||
var countbi = 0; //站比
|
||||
var allCountbi = 0; //总站比
|
||||
for (var i = 0; i < this.tishiData.length; i++) { |
||||
countall += this.tishiData[i].count; |
||||
} |
||||
this.res = |
||||
'<div class="tishi" style=" backgroundColor:rgba(255,255,255,1);width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span style="color:#FFFFFF;font-size:27px;text-align: center;display:block;">' + |
||||
datas.name + |
||||
"</span></div>"; |
||||
this.res += |
||||
'</br><div style="width:300px;height:100%;padding:0 20px 15px 20px"><table style="width:300px;font-size:16px; color:#FFFFFF;border-collapse:collapse;"cellspacing="0"; >'; |
||||
this.res += '<thead style="font-size:18px;"><tr>'; |
||||
this.res += '<td style="text-align:center;width:30%;">名称</td>'; |
||||
this.res += '<td style="text-align:center;width:30%;">数量</td>'; |
||||
this.res += '<td style="text-align:center;width:30%;">总占比</td>'; |
||||
this.res += "</tr></thead>"; |
||||
this.res += "<tbody>"; |
||||
for (var i = 0; i < this.tishiData.length; i++) { |
||||
countbi = |
||||
Math.round((this.tishiData[i].count / countall) * 10000) / 100.0; |
||||
allCountbi = allCountbi + countbi; |
||||
this.res += "<tr>"; |
||||
this.res += |
||||
'<td style="text-align:center;">' + |
||||
this.tishiData[i].organizationName + |
||||
"</td>"; |
||||
this.res += |
||||
'<td style="text-align:center;">' + this.tishiData[i].count + "</td>"; |
||||
this.res += '<td style="text-align:center;">' + countbi + "%</td></tr>"; |
||||
} |
||||
|
||||
this.res += "</tbody>"; |
||||
this.res += |
||||
'<tfoot style="font-size:18px;"><td style="text-align:center;">总计</td><td style="text-align:center;">' + |
||||
countall + |
||||
'</td><td style="text-align:center;">' + |
||||
allCountbi.toFixed(2) + |
||||
"%</td></tfoot>"; |
||||
this.res += "</table></div></div>"; |
||||
return this.res; |
||||
} |
||||
} |
||||
|
@ -1,393 +1,478 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
import { ActivatedRoute, Router } from '@angular/router'; |
||||
import {EchartsDataService} from '../../echarts-data.service'; |
||||
import { HttpClient } from '@angular/common/http' |
||||
import { Component, OnInit } from "@angular/core"; |
||||
import { ActivatedRoute, Router } from "@angular/router"; |
||||
import { EchartsDataService } from "../../echarts-data.service"; |
||||
import { HttpClient } from "@angular/common/http"; |
||||
declare var echarts: any; |
||||
@Component({ |
||||
selector: 'app-building-type-two-reverse', |
||||
templateUrl: './building-type-two-reverse.component.html', |
||||
styleUrls: ['./building-type-two-reverse.component.scss'] |
||||
selector: "app-building-type-two-reverse", |
||||
templateUrl: "./building-type-two-reverse.component.html", |
||||
styleUrls: ["./building-type-two-reverse.component.scss"], |
||||
}) |
||||
export class BuildingTypeTwoReverseComponent implements OnInit { |
||||
constructor( |
||||
private http: HttpClient, |
||||
private router: Router, |
||||
public data: EchartsDataService, |
||||
private route: ActivatedRoute |
||||
) {} |
||||
|
||||
constructor(private http:HttpClient,private router: Router,public data:EchartsDataService,private route:ActivatedRoute) { } |
||||
|
||||
forward(){ |
||||
this.router.navigate(['/statisticanalysis/buildingType_one/buildingType_two_forward']) |
||||
forward() { |
||||
this.router.navigate([ |
||||
"/statisticanalysis/buildingType_one/buildingType_two_forward", |
||||
]); |
||||
} |
||||
reverse(){ |
||||
this.router.navigate(['/statisticanalysis/buildingType_one/buildingType_two_reverse']) |
||||
reverse() { |
||||
this.router.navigate([ |
||||
"/statisticanalysis/buildingType_one/buildingType_two_reverse", |
||||
]); |
||||
} |
||||
headname//标题
|
||||
buildId//建筑id
|
||||
padHw//是否是华为pad
|
||||
headname; //标题
|
||||
buildId; //建筑id
|
||||
padHw; //是否是华为pad
|
||||
ngOnInit(): void { |
||||
if(window.matchMedia("(max-width: 1300px)").matches&&window.matchMedia("(max-height: 700px)").matches){ |
||||
this.padHw=true |
||||
if ( |
||||
window.matchMedia("(max-width: 1300px)").matches && |
||||
window.matchMedia("(max-height: 700px)").matches |
||||
) { |
||||
this.padHw = true; |
||||
//this.padjt=
|
||||
}else{ |
||||
this.padHw=false |
||||
} else { |
||||
this.padHw = false; |
||||
} |
||||
if(sessionStorage.getItem('refresh') === 'true') { |
||||
sessionStorage.removeItem('refresh'); |
||||
if (sessionStorage.getItem("refresh") === "true") { |
||||
sessionStorage.removeItem("refresh"); |
||||
location.reload(); |
||||
} |
||||
this.route.queryParams.subscribe(param=>{ |
||||
this.headname=param.level |
||||
this.buildId=param.id |
||||
} |
||||
this.route.queryParams.subscribe((param) => { |
||||
this.headname = param.level; |
||||
this.buildId = param.id; |
||||
}); |
||||
let paramsdata:any = { |
||||
id:this.buildId, |
||||
let paramsdata: any = { |
||||
id: this.buildId, |
||||
//organizationId:'1'
|
||||
} |
||||
|
||||
window.setTimeout(()=>{ |
||||
this.getechartsdata() |
||||
}; |
||||
|
||||
window.setTimeout(() => { |
||||
this.getechartsdata(); |
||||
}); |
||||
|
||||
} |
||||
ngOnDestroy(): void { |
||||
/* this.indexBzt.clear() |
||||
this.indexBzt.dispose() */ |
||||
this.forArr.forEach(item => { |
||||
item.echart.clear() |
||||
item.echart.dispose() |
||||
}) |
||||
if (this.forArr && this.forArr.length !== 0) { |
||||
this.forArr.forEach((item) => { |
||||
item.echart.clear(); |
||||
item.echart.dispose(); |
||||
}); |
||||
} |
||||
} |
||||
async getechartsdata(){ |
||||
await this.data.getData(null,`/api/StatisticsAnalysis/Companies/BuildingTypes/${this.buildId}`) |
||||
this.tabledata=JSON.parse(JSON.stringify(this.data.allDate)) |
||||
for(var i=0;i<this.tabledata[0].organizations.length;i++){ |
||||
this.zhiNameData.push(this.tabledata[0].organizations[i].organizationName) |
||||
this.zhiNumData.push(this.tabledata[0].organizations[i].count) |
||||
this.organizationId.push(this.tabledata[0].organizations[i].organizationId) |
||||
} |
||||
this.tiaoshiPao=this.data.qipao(this.tiaoshiPao,this.zhiNumData,this.zhiNameData) |
||||
this.barEcharts() |
||||
async getechartsdata() { |
||||
await this.data.getData( |
||||
null, |
||||
`/api/StatisticsAnalysis/Companies/BuildingTypes/${this.buildId}` |
||||
); |
||||
this.tabledata = JSON.parse(JSON.stringify(this.data.allDate)); |
||||
for (var i = 0; i < this.tabledata[0].organizations.length; i++) { |
||||
this.zhiNameData.push( |
||||
this.tabledata[0].organizations[i].organizationName |
||||
); |
||||
this.zhiNumData.push(this.tabledata[0].organizations[i].count); |
||||
this.organizationId.push( |
||||
this.tabledata[0].organizations[i].organizationId |
||||
); |
||||
} |
||||
this.tiaoshiPao = this.data.qipao( |
||||
this.tiaoshiPao, |
||||
this.zhiNumData, |
||||
this.zhiNameData |
||||
); |
||||
this.barEcharts(); |
||||
} |
||||
axisLabel = { |
||||
interval: 0, |
||||
rotate:38, |
||||
textStyle:{ |
||||
fontSize :16, |
||||
color:'#000000' |
||||
},
|
||||
formatter:function(value)
|
||||
{
|
||||
var ret = "";//拼接加\n返回的类目项
|
||||
var maxLength = 2;//每项显示文字个数
|
||||
var valLength = value.length;//X轴类目项的文字个数
|
||||
var rowN = Math.ceil(valLength / maxLength); //类目项需要换行的行数
|
||||
if (rowN > 1)//如果类目项的文字大于3,
|
||||
{
|
||||
for (var i = 0; i < rowN; i++) {
|
||||
var temp = "";//每次截取的字符串
|
||||
var start = i * maxLength;//开始截取的位置
|
||||
var end = start + maxLength;//结束截取的位置
|
||||
//这里也可以加一个是否是最后一行的判断,但是不加也没有影响,那就不加吧
|
||||
temp = value.substring(start, end) + "\n";
|
||||
ret += temp; //凭借最终的字符串
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
else {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
}//echarts两个字换行
|
||||
rotate: 38, |
||||
textStyle: { |
||||
fontSize: 16, |
||||
color: "#000000", |
||||
}, |
||||
formatter: function (value) { |
||||
var ret = ""; //拼接加\n返回的类目项
|
||||
var maxLength = 2; //每项显示文字个数
|
||||
var valLength = value.length; //X轴类目项的文字个数
|
||||
var rowN = Math.ceil(valLength / maxLength); //类目项需要换行的行数
|
||||
if (rowN > 1) { |
||||
//如果类目项的文字大于3,
|
||||
for (var i = 0; i < rowN; i++) { |
||||
var temp = ""; //每次截取的字符串
|
||||
var start = i * maxLength; //开始截取的位置
|
||||
var end = start + maxLength; //结束截取的位置
|
||||
//这里也可以加一个是否是最后一行的判断,但是不加也没有影响,那就不加吧
|
||||
temp = value.substring(start, end) + "\n"; |
||||
ret += temp; //凭借最终的字符串
|
||||
} |
||||
return ret; |
||||
} else { |
||||
return value; |
||||
} |
||||
}, |
||||
}; //echarts两个字换行
|
||||
|
||||
topTextlabel = { |
||||
show: true, // 开启显示
|
||||
position: 'top', // 在上方显示
|
||||
position: "top", // 在上方显示
|
||||
distance: 10, // 距离图形元素的距离。当 position 为字符描述值(如 'top'、'insideRight')时候有效。
|
||||
verticalAlign: 'middle', |
||||
textStyle: { // 数值样式
|
||||
color: 'black', |
||||
fontSize: 12 |
||||
} |
||||
}//柱状图数值顶部显示
|
||||
verticalAlign: "middle", |
||||
textStyle: { |
||||
// 数值样式
|
||||
color: "black", |
||||
fontSize: 12, |
||||
}, |
||||
}; //柱状图数值顶部显示
|
||||
|
||||
tableDataZhi = [ {name:"浦东支队",number:"156",zhanbi:"3%"}, |
||||
{name:"黄浦支队",number:"144",zhanbi:"2.8%"}, |
||||
{name:"徐汇支队",number:"133",zhanbi:"2.1%"}, |
||||
{name:"长宁支队",number:"122",zhanbi:"1.6%"}, |
||||
{name:"静安支队",number:"120",zhanbi:"1.3%"}, |
||||
{name:"普陀支队",number:"100",zhanbi:"1.1%"}, |
||||
{name:"虹口支队",number:"95",zhanbi:"1%"}, |
||||
{name:"杨浦支队",number:"90",zhanbi:"0.9%"}, |
||||
{name:"闵行支队",number:"88",zhanbi:"0.8%"}, |
||||
{name:"宝山支队",number:"83",zhanbi:"0.7%"}, |
||||
{name:"徐汇支队",number:"133",zhanbi:"2.1%"}, |
||||
{name:"长宁支队",number:"122",zhanbi:"1.6%"}, |
||||
{name:"嘉定支队",number:"78",zhanbi:"0.6%"}, |
||||
{name:"松江支队",number:"75",zhanbi:"0.5%"}, |
||||
{name:"金山支队",number:"65",zhanbi:"0.4%"}, |
||||
{name:"崇明支队",number:"55",zhanbi:"0.3%"} ] |
||||
tableDataZhong = [ {name:"浦东中队",number:"156",zhanbi:"3%"}, |
||||
{name:"黄浦中队",number:"144",zhanbi:"2.8%"}, |
||||
{name:"徐汇中队",number:"133",zhanbi:"2.1%"}, |
||||
{name:"长宁中队",number:"122",zhanbi:"1.6%"}, |
||||
{name:"静安中队",number:"120",zhanbi:"1.3%"}, |
||||
{name:"普陀中队",number:"100",zhanbi:"1.1%"}, |
||||
{name:"虹口中队",number:"95",zhanbi:"1%"}, |
||||
{name:"杨浦中队",number:"90",zhanbi:"0.9%"}, |
||||
{name:"闵行中队",number:"88",zhanbi:"0.8%"}, |
||||
{name:"宝山中队",number:"83",zhanbi:"0.7%"}, |
||||
{name:"徐汇中队",number:"133",zhanbi:"2.1%"}, |
||||
{name:"长宁中队",number:"122",zhanbi:"1.6%"}, |
||||
{name:"嘉定中队",number:"78",zhanbi:"0.6%"}, |
||||
{name:"松江中队",number:"75",zhanbi:"0.5%"}, |
||||
{name:"金山中队",number:"65",zhanbi:"0.4%"}, |
||||
{name:"崇明中队",number:"55",zhanbi:"0.3%"} ] |
||||
zhiNameData = [] |
||||
zhiNumData = [] |
||||
tiaoshiPao:any |
||||
tableDataZhi = [ |
||||
{ name: "浦东支队", number: "156", zhanbi: "3%" }, |
||||
{ name: "黄浦支队", number: "144", zhanbi: "2.8%" }, |
||||
{ name: "徐汇支队", number: "133", zhanbi: "2.1%" }, |
||||
{ name: "长宁支队", number: "122", zhanbi: "1.6%" }, |
||||
{ name: "静安支队", number: "120", zhanbi: "1.3%" }, |
||||
{ name: "普陀支队", number: "100", zhanbi: "1.1%" }, |
||||
{ name: "虹口支队", number: "95", zhanbi: "1%" }, |
||||
{ name: "杨浦支队", number: "90", zhanbi: "0.9%" }, |
||||
{ name: "闵行支队", number: "88", zhanbi: "0.8%" }, |
||||
{ name: "宝山支队", number: "83", zhanbi: "0.7%" }, |
||||
{ name: "徐汇支队", number: "133", zhanbi: "2.1%" }, |
||||
{ name: "长宁支队", number: "122", zhanbi: "1.6%" }, |
||||
{ name: "嘉定支队", number: "78", zhanbi: "0.6%" }, |
||||
{ name: "松江支队", number: "75", zhanbi: "0.5%" }, |
||||
{ name: "金山支队", number: "65", zhanbi: "0.4%" }, |
||||
{ name: "崇明支队", number: "55", zhanbi: "0.3%" }, |
||||
]; |
||||
tableDataZhong = [ |
||||
{ name: "浦东中队", number: "156", zhanbi: "3%" }, |
||||
{ name: "黄浦中队", number: "144", zhanbi: "2.8%" }, |
||||
{ name: "徐汇中队", number: "133", zhanbi: "2.1%" }, |
||||
{ name: "长宁中队", number: "122", zhanbi: "1.6%" }, |
||||
{ name: "静安中队", number: "120", zhanbi: "1.3%" }, |
||||
{ name: "普陀中队", number: "100", zhanbi: "1.1%" }, |
||||
{ name: "虹口中队", number: "95", zhanbi: "1%" }, |
||||
{ name: "杨浦中队", number: "90", zhanbi: "0.9%" }, |
||||
{ name: "闵行中队", number: "88", zhanbi: "0.8%" }, |
||||
{ name: "宝山中队", number: "83", zhanbi: "0.7%" }, |
||||
{ name: "徐汇中队", number: "133", zhanbi: "2.1%" }, |
||||
{ name: "长宁中队", number: "122", zhanbi: "1.6%" }, |
||||
{ name: "嘉定中队", number: "78", zhanbi: "0.6%" }, |
||||
{ name: "松江中队", number: "75", zhanbi: "0.5%" }, |
||||
{ name: "金山中队", number: "65", zhanbi: "0.4%" }, |
||||
{ name: "崇明中队", number: "55", zhanbi: "0.3%" }, |
||||
]; |
||||
zhiNameData = []; |
||||
zhiNumData = []; |
||||
tiaoshiPao: any; |
||||
//气泡提示数据获取
|
||||
bianli(){ |
||||
if(this.zhiNumData.length>=1){ |
||||
var arrshuzu='['; |
||||
for(var i=0;i<this.zhiNumData.length;i++){ |
||||
arrshuzu+='{"value":'+this.zhiNumData[i]+',"coord":['+i+','+this.zhiNumData[i]+'],"name":'+'"'+this.zhiNameData[i]+'"'+'},' |
||||
} |
||||
arrshuzu=arrshuzu.substring(0,arrshuzu.length-1) |
||||
arrshuzu+=']' |
||||
this.tiaoshiPao=JSON.parse(arrshuzu) |
||||
bianli() { |
||||
if (this.zhiNumData.length >= 1) { |
||||
var arrshuzu = "["; |
||||
for (var i = 0; i < this.zhiNumData.length; i++) { |
||||
arrshuzu += |
||||
'{"value":' + |
||||
this.zhiNumData[i] + |
||||
',"coord":[' + |
||||
i + |
||||
"," + |
||||
this.zhiNumData[i] + |
||||
'],"name":' + |
||||
'"' + |
||||
this.zhiNameData[i] + |
||||
'"' + |
||||
"},"; |
||||
} |
||||
arrshuzu = arrshuzu.substring(0, arrshuzu.length - 1); |
||||
arrshuzu += "]"; |
||||
this.tiaoshiPao = JSON.parse(arrshuzu); |
||||
} |
||||
|
||||
} |
||||
forArr = [{id:'gaoceng',name:'高层',echart:null}, |
||||
{id:'dixia',name:'地下',echart:null}, |
||||
{id:'guidao',name:'轨道交通',echart:null}, |
||||
{id:'huagong',name:'化工生产',echart:null}, |
||||
{id:'chuguan',name:'储罐类',echart:null}, |
||||
{id:'changfang',name:'厂房',echart:null}, |
||||
{id:'gujianzhu',name:'古建筑',echart:null}, |
||||
{id:'shichang',name:'商市场',echart:null}, |
||||
{id:'yiyuan',name:'医院',echart:null}, |
||||
{id:'xuexiao',name:'学校',echart:null}, |
||||
{id:'binguan',name:'宾馆',echart:null}, |
||||
{id:'yule',name:'娱乐场所',echart:null}, |
||||
{id:'canyin',name:'餐饮业',echart:null}, |
||||
{id:'yingyuan',name:'影剧院',echart:null}, |
||||
{id:'zhanlan',name:'展览建筑',echart:null}, |
||||
{id:'suidao',name:'隧道',echart:null}] |
||||
|
||||
|
||||
forArr = [ |
||||
{ id: "gaoceng", name: "高层", echart: null }, |
||||
{ id: "dixia", name: "地下", echart: null }, |
||||
{ id: "guidao", name: "轨道交通", echart: null }, |
||||
{ id: "huagong", name: "化工生产", echart: null }, |
||||
{ id: "chuguan", name: "储罐类", echart: null }, |
||||
{ id: "changfang", name: "厂房", echart: null }, |
||||
{ id: "gujianzhu", name: "古建筑", echart: null }, |
||||
{ id: "shichang", name: "商市场", echart: null }, |
||||
{ id: "yiyuan", name: "医院", echart: null }, |
||||
{ id: "xuexiao", name: "学校", echart: null }, |
||||
{ id: "binguan", name: "宾馆", echart: null }, |
||||
{ id: "yule", name: "娱乐场所", echart: null }, |
||||
{ id: "canyin", name: "餐饮业", echart: null }, |
||||
{ id: "yingyuan", name: "影剧院", echart: null }, |
||||
{ id: "zhanlan", name: "展览建筑", echart: null }, |
||||
{ id: "suidao", name: "隧道", echart: null }, |
||||
]; |
||||
|
||||
//返回
|
||||
goback(){ |
||||
sessionStorage.setItem('refresh', 'true'); |
||||
goback() { |
||||
sessionStorage.setItem("refresh", "true"); |
||||
history.go(-1); |
||||
} |
||||
/* 顶部饼状图 */ |
||||
indexBzt |
||||
initCharts(){ |
||||
|
||||
this.indexBzt = echarts.init(document.getElementById('pie'),'walden'); |
||||
let options={ |
||||
indexBzt; |
||||
initCharts() { |
||||
this.indexBzt = echarts.init(document.getElementById("pie"), "walden"); |
||||
let options = { |
||||
title: { |
||||
text: '建筑类型统计(8900家)', |
||||
left: 'center', |
||||
top: "7%", |
||||
textStyle: { |
||||
fontSize:26 |
||||
} |
||||
text: "建筑类型统计(8900家)", |
||||
left: "center", |
||||
top: "7%", |
||||
textStyle: { |
||||
fontSize: 26, |
||||
}, |
||||
}, |
||||
tooltip: { |
||||
trigger: 'item', |
||||
formatter: (params)=>{ |
||||
return this.data.tableTooltip(this.tableDataZhi,params.name) |
||||
trigger: "item", |
||||
formatter: (params) => { |
||||
return this.data.tableTooltip(this.tableDataZhi, params.name); |
||||
}, |
||||
position: this.data.tableTooltipNoShow2 |
||||
position: this.data.tableTooltipNoShow2, |
||||
}, |
||||
legend: { |
||||
orient: 'vertical', |
||||
orient: "vertical", |
||||
right: 150, |
||||
top:80, |
||||
textStyle:{ |
||||
fontSize:18, |
||||
color:"#000000" |
||||
top: 80, |
||||
textStyle: { |
||||
fontSize: 18, |
||||
color: "#000000", |
||||
}, |
||||
data: ['高层', '地下', '轨道交通', '化工生产', '储罐类' , '厂房','古建筑', '商市场', '医院', '学校', '宾馆' , '娱乐场所','餐饮业', '影剧院', '展览建筑' , '隧道'] |
||||
data: [ |
||||
"高层", |
||||
"地下", |
||||
"轨道交通", |
||||
"化工生产", |
||||
"储罐类", |
||||
"厂房", |
||||
"古建筑", |
||||
"商市场", |
||||
"医院", |
||||
"学校", |
||||
"宾馆", |
||||
"娱乐场所", |
||||
"餐饮业", |
||||
"影剧院", |
||||
"展览建筑", |
||||
"隧道", |
||||
], |
||||
}, |
||||
series: [ |
||||
{ |
||||
name: '访问来源', |
||||
type: 'pie', |
||||
radius: '70%', |
||||
center: ['50%', '60%'], |
||||
label:{ |
||||
show:true, |
||||
fontSize:16, |
||||
formatter:'{b}{c}家\n{d|({d}%)}', |
||||
name: "访问来源", |
||||
type: "pie", |
||||
radius: "70%", |
||||
center: ["50%", "60%"], |
||||
label: { |
||||
show: true, |
||||
fontSize: 16, |
||||
formatter: "{b}{c}家\n{d|({d}%)}", |
||||
rich: { |
||||
d: { |
||||
align: 'center', |
||||
fontSize:16 |
||||
} |
||||
align: "center", |
||||
fontSize: 16, |
||||
}, |
||||
}, |
||||
}, |
||||
data: [ |
||||
{value: 500, name: '高层'}, |
||||
{value: 800, name: '地下'}, |
||||
{value: 900, name: '轨道交通'}, |
||||
{value: 800, name: '化工生产'}, |
||||
{value: 1200, name: '储罐类'}, |
||||
{value: 1500, name: '厂房'}, |
||||
{value: 1400, name: '古建筑'}, |
||||
{value: 600, name: '商市场'}, |
||||
{value: 568, name: '医院'}, |
||||
{value: 888, name: '学校'}, |
||||
{value: 485, name: '宾馆'}, |
||||
{value: 966, name: '娱乐场所'}, |
||||
{value: 789, name: '餐饮业'}, |
||||
{value: 500, name: '影剧院'}, |
||||
{value: 1025, name: '展览建筑'}, |
||||
{value: 600, name: '隧道'} |
||||
{ value: 500, name: "高层" }, |
||||
{ value: 800, name: "地下" }, |
||||
{ value: 900, name: "轨道交通" }, |
||||
{ value: 800, name: "化工生产" }, |
||||
{ value: 1200, name: "储罐类" }, |
||||
{ value: 1500, name: "厂房" }, |
||||
{ value: 1400, name: "古建筑" }, |
||||
{ value: 600, name: "商市场" }, |
||||
{ value: 568, name: "医院" }, |
||||
{ value: 888, name: "学校" }, |
||||
{ value: 485, name: "宾馆" }, |
||||
{ value: 966, name: "娱乐场所" }, |
||||
{ value: 789, name: "餐饮业" }, |
||||
{ value: 500, name: "影剧院" }, |
||||
{ value: 1025, name: "展览建筑" }, |
||||
{ value: 600, name: "隧道" }, |
||||
], |
||||
emphasis: { |
||||
itemStyle: { |
||||
shadowBlur: 10, |
||||
shadowOffsetX: 0, |
||||
shadowColor: 'rgba(0, 0, 0, 0.5)' |
||||
} |
||||
} |
||||
} |
||||
] |
||||
shadowColor: "rgba(0, 0, 0, 0.5)", |
||||
}, |
||||
}, |
||||
}, |
||||
], |
||||
}; |
||||
this.indexBzt.on('click', (params) => { |
||||
this.indexBzt.on("click", (params) => { |
||||
// this.router.navigateByUrl('/statisticanalysis/buildingType_two_forward');
|
||||
}); |
||||
this.indexBzt.setOption(options); |
||||
} |
||||
//柱状图
|
||||
lengthdata=[]//提示数据
|
||||
count=0//总数
|
||||
indexData=[]//所有数据
|
||||
organizationId=[] |
||||
tabledata |
||||
barEcharts(){ |
||||
this.forArr.forEach(item=>{ |
||||
let _this = this |
||||
item.echart = echarts.init(document.getElementById('gaoceng'),'walden'); |
||||
let option = { |
||||
title: { |
||||
text: this.headname+this.tabledata[0].totalCount, |
||||
left: "center", |
||||
top:this.padHw?"18":"0", |
||||
bottom:this.padHw?"0":'510', |
||||
lengthdata = []; //提示数据
|
||||
count = 0; //总数
|
||||
indexData = []; //所有数据
|
||||
organizationId = []; |
||||
tabledata; |
||||
barEcharts() { |
||||
this.forArr.forEach((item) => { |
||||
let _this = this; |
||||
item.echart = echarts.init(document.getElementById("gaoceng"), "walden"); |
||||
let option = { |
||||
title: { |
||||
text: this.headname + this.tabledata[0].totalCount, |
||||
left: "center", |
||||
top: this.padHw ? "18" : "0", |
||||
bottom: this.padHw ? "0" : "510", |
||||
textStyle: { |
||||
fontSize: 30, |
||||
}, |
||||
}, |
||||
grid: { |
||||
//top: 90,
|
||||
bottom: "18%", |
||||
}, |
||||
xAxis: { |
||||
id: this.organizationId, |
||||
type: "category", |
||||
data: this.zhiNameData, |
||||
axisLabel: { |
||||
//this.axisLabel,
|
||||
interval: 0, |
||||
rotate: 28, |
||||
textStyle: { |
||||
fontSize: 30 |
||||
} |
||||
fontSize: 16, |
||||
color: "#000000", |
||||
}, |
||||
}, |
||||
grid: { |
||||
//top: 90,
|
||||
bottom: '18%', |
||||
}, |
||||
xAxis: { |
||||
id:this.organizationId, |
||||
type: 'category', |
||||
data: this.zhiNameData, |
||||
axisLabel:{ |
||||
//this.axisLabel,
|
||||
interval: 0, |
||||
rotate:28, |
||||
textStyle:{ |
||||
fontSize :16, |
||||
color:'#000000' |
||||
} |
||||
|
||||
} |
||||
yAxis: { |
||||
type: "value", |
||||
axisLabel: { |
||||
//this.axisLabel,
|
||||
textStyle: { |
||||
fontSize: 16, |
||||
color: "#000000", |
||||
}, |
||||
}, |
||||
yAxis: { |
||||
type: 'value', |
||||
axisLabel:{ |
||||
//this.axisLabel,
|
||||
textStyle:{ |
||||
fontSize :16, |
||||
color:'#000000' |
||||
} |
||||
|
||||
} |
||||
}, |
||||
tooltip: { |
||||
trigger: "item", |
||||
formatter: (params) => { |
||||
return this.tableTooltip(params); |
||||
}, |
||||
tooltip: { |
||||
trigger: 'item', |
||||
formatter: (params)=>{ |
||||
return this.tableTooltip(params) |
||||
position: this.data.tableTooltipNoShow2, |
||||
}, |
||||
series: [ |
||||
{ |
||||
data: this.zhiNumData, |
||||
type: "bar", |
||||
markPoint: { |
||||
data: this.tiaoshiPao, |
||||
}, |
||||
position: this.data.tableTooltipNoShow2 |
||||
}, |
||||
series: [{ |
||||
data: this.zhiNumData, |
||||
type: 'bar', |
||||
markPoint: { |
||||
data:this.tiaoshiPao |
||||
//showBackground: true,
|
||||
backgroundStyle: { |
||||
color: "rgba(220, 220, 220, 0.8)", |
||||
}, |
||||
//showBackground: true,
|
||||
backgroundStyle: { |
||||
color: 'rgba(220, 220, 220, 0.8)' |
||||
barWidth: "38", |
||||
//label: this.topTextlabel
|
||||
}, |
||||
], |
||||
}; |
||||
item.echart.setOption(option); |
||||
item.echart.getZr().on("click", (params) => { |
||||
const pointInPixel = [params.offsetX, params.offsetY]; |
||||
if (item.echart.containPixel("grid", pointInPixel)) { |
||||
let xIndex = item.echart.convertFromPixel({ seriesIndex: 0 }, [ |
||||
params.offsetX, |
||||
params.offsetY, |
||||
])[0]; |
||||
/*事件处理代码书写位置*/ |
||||
if ( |
||||
(this.data.level == "0" || this.data.level == "1") && |
||||
this.tabledata[0].organizations[xIndex].subOrganizations.length >= 1 |
||||
) { |
||||
//总队,支队跳转
|
||||
this.router.navigate( |
||||
[ |
||||
"/statisticanalysis/buildingType_one/buildingType_three_details", |
||||
], |
||||
{ |
||||
queryParams: { |
||||
organizationName: option.xAxis.data[xIndex], |
||||
buildingTypeName: this.headname, |
||||
buildId: this.buildId, |
||||
organizationId: option.xAxis.id[xIndex], |
||||
}, |
||||
} |
||||
); |
||||
} else { |
||||
this.router.navigate(["/statisticanalysis/CompangInfo"], { |
||||
queryParams: { |
||||
name: option.xAxis.data[xIndex], |
||||
type: 1, |
||||
jsid: option.xAxis.id[xIndex], |
||||
buildid: this.buildId, |
||||
}, |
||||
barWidth :'38', |
||||
//label: this.topTextlabel
|
||||
}] |
||||
}; |
||||
item.echart.setOption(option); |
||||
item.echart.getZr().on('click', (params) => { |
||||
const pointInPixel= [params.offsetX, params.offsetY]; |
||||
if (item.echart.containPixel('grid',pointInPixel)) { |
||||
let xIndex=item.echart.convertFromPixel({seriesIndex:0},[params.offsetX, params.offsetY])[0]; |
||||
/*事件处理代码书写位置*/ |
||||
if((this.data.level=='0'||this.data.level=='1')&&this.tabledata[0].organizations[xIndex].subOrganizations.length>=1){ |
||||
//总队,支队跳转
|
||||
this.router.navigate(['/statisticanalysis/buildingType_one/buildingType_three_details'],{queryParams:{'organizationName':option.xAxis.data[xIndex],'buildingTypeName':this.headname,'buildId':this.buildId,'organizationId':option.xAxis.id[xIndex]}}) |
||||
} |
||||
else{ |
||||
this.router.navigate(['/statisticanalysis/CompangInfo'],{queryParams:{'name':option.xAxis.data[xIndex],'type':1,'jsid':option.xAxis.id[xIndex],'buildid':this.buildId}}); |
||||
}); |
||||
} |
||||
//this.router.navigate(['/statisticanalysis/delete_one/delete_four'],{queryParams:{'level':this.option.xAxis.data[xIndex]+headName}});
|
||||
} |
||||
//this.router.navigate(['/statisticanalysis/delete_one/delete_four'],{queryParams:{'level':this.option.xAxis.data[xIndex]+headName}});
|
||||
} |
||||
|
||||
}); |
||||
}) |
||||
|
||||
|
||||
}); |
||||
}); |
||||
} |
||||
|
||||
//提示框表格
|
||||
res |
||||
tishiData |
||||
tableTooltip(datas){ |
||||
for(var a in this.data.obdata[0].organizations){ |
||||
if(this.data.obdata[0].organizations[a].organizationName==datas.name){ |
||||
this.tishiData=this.data.obdata[0].organizations[a].subOrganizations |
||||
res; |
||||
tishiData; |
||||
tableTooltip(datas) { |
||||
for (var a in this.data.obdata[0].organizations) { |
||||
if (this.data.obdata[0].organizations[a].organizationName == datas.name) { |
||||
this.tishiData = this.data.obdata[0].organizations[a].subOrganizations; |
||||
} |
||||
} |
||||
var countall=0//总计
|
||||
var countbi=0//站比
|
||||
var allCountbi=0//总站比
|
||||
for(var i=0;i<this.tishiData.length;i++){ |
||||
countall+=this.tishiData[i].count |
||||
} |
||||
this.res= '<div class="tishi" style=" backgroundColor:rgba(255,255,255,1);width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span style="color:#FFFFFF;font-size:27px;text-align: center;display:block;">'+datas.name+'</span></div>' |
||||
this.res+='</br><div style="width:300px;height:100%;padding:0 20px 15px 20px"><table style="width:300px;font-size:16px; color:#FFFFFF;border-collapse:collapse;"cellspacing="0"; >'; |
||||
this.res+='<thead style="font-size:18px;"><tr>'; |
||||
this.res+='<td style="text-align:center;width:30%;">名称</td>'; |
||||
this.res+='<td style="text-align:center;width:30%;">数量</td>' |
||||
this.res+='<td style="text-align:center;width:30%;">总占比</td>' |
||||
this.res+='</tr></thead>' |
||||
this.res+='<tbody>'; |
||||
for(var i=0;i<this.tishiData.length;i++){ |
||||
countbi=Math.round(this.tishiData[i].count/countall* 10000)/ 100.00 |
||||
allCountbi=allCountbi+countbi |
||||
this.res+='<tr>' |
||||
this.res+='<td style="text-align:center;">'+this.tishiData[i].organizationName+'</td>' |
||||
this.res+='<td style="text-align:center;">'+this.tishiData[i].count+'</td>' |
||||
this.res+='<td style="text-align:center;">'+countbi+'%</td></tr>' |
||||
} |
||||
|
||||
this.res+='</tbody>' |
||||
this.res+='<tfoot style="font-size:18px;"><td style="text-align:center;">总计</td><td style="text-align:center;">'+countall+'</td><td style="text-align:center;">'+allCountbi.toFixed(2)+'%</td></tfoot>' |
||||
this.res+='</table></div></div>' |
||||
return this.res |
||||
var countall = 0; //总计
|
||||
var countbi = 0; //站比
|
||||
var allCountbi = 0; //总站比
|
||||
for (var i = 0; i < this.tishiData.length; i++) { |
||||
countall += this.tishiData[i].count; |
||||
} |
||||
this.res = |
||||
'<div class="tishi" style=" backgroundColor:rgba(255,255,255,1);width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span style="color:#FFFFFF;font-size:27px;text-align: center;display:block;">' + |
||||
datas.name + |
||||
"</span></div>"; |
||||
this.res += |
||||
'</br><div style="width:300px;height:100%;padding:0 20px 15px 20px"><table style="width:300px;font-size:16px; color:#FFFFFF;border-collapse:collapse;"cellspacing="0"; >'; |
||||
this.res += '<thead style="font-size:18px;"><tr>'; |
||||
this.res += '<td style="text-align:center;width:30%;">名称</td>'; |
||||
this.res += '<td style="text-align:center;width:30%;">数量</td>'; |
||||
this.res += '<td style="text-align:center;width:30%;">总占比</td>'; |
||||
this.res += "</tr></thead>"; |
||||
this.res += "<tbody>"; |
||||
for (var i = 0; i < this.tishiData.length; i++) { |
||||
countbi = |
||||
Math.round((this.tishiData[i].count / countall) * 10000) / 100.0; |
||||
allCountbi = allCountbi + countbi; |
||||
this.res += "<tr>"; |
||||
this.res += |
||||
'<td style="text-align:center;">' + |
||||
this.tishiData[i].organizationName + |
||||
"</td>"; |
||||
this.res += |
||||
'<td style="text-align:center;">' + this.tishiData[i].count + "</td>"; |
||||
this.res += '<td style="text-align:center;">' + countbi + "%</td></tr>"; |
||||
} |
||||
|
||||
this.res += "</tbody>"; |
||||
this.res += |
||||
'<tfoot style="font-size:18px;"><td style="text-align:center;">总计</td><td style="text-align:center;">' + |
||||
countall + |
||||
'</td><td style="text-align:center;">' + |
||||
allCountbi.toFixed(2) + |
||||
"%</td></tfoot>"; |
||||
this.res += "</table></div></div>"; |
||||
return this.res; |
||||
} |
||||
} |
||||
|
@ -1,153 +1,195 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
import { Router } from '@angular/router'; |
||||
import {EchartsDataService,} from '../../echarts-data.service' |
||||
import { Component, OnInit } from "@angular/core"; |
||||
import { Router } from "@angular/router"; |
||||
import { EchartsDataService } from "../../echarts-data.service"; |
||||
declare var echarts: any; |
||||
|
||||
@Component({ |
||||
selector: 'app-delete-one', |
||||
templateUrl: './delete-one.component.html', |
||||
styleUrls: ['./delete-one.component.scss'] |
||||
selector: "app-delete-one", |
||||
templateUrl: "./delete-one.component.html", |
||||
styleUrls: ["./delete-one.component.scss"], |
||||
}) |
||||
export class DeleteOneComponent implements OnInit { |
||||
options:any; |
||||
options: any; |
||||
|
||||
indexBzt//echarts实例
|
||||
indexBzt; //echarts实例
|
||||
|
||||
constructor(private router: Router,public echartsData:EchartsDataService) { } |
||||
constructor(private router: Router, public echartsData: EchartsDataService) {} |
||||
|
||||
ngOnInit() { |
||||
window.setTimeout(()=>{ |
||||
this.initCharts() |
||||
},0) |
||||
window.setTimeout(() => { |
||||
this.initCharts(); |
||||
}, 0); |
||||
} |
||||
ngOnDestroy():void{ |
||||
this.indexBzt.clear() |
||||
this.indexBzt.dispose() |
||||
ngOnDestroy(): void { |
||||
if (this.indexBzt) { |
||||
this.indexBzt.clear(); |
||||
this.indexBzt.dispose(); |
||||
} |
||||
} |
||||
|
||||
/* 首页饼状图 */ |
||||
initCharts(){ |
||||
initCharts() { |
||||
//console.log(document.getElementById('indexBzt'))
|
||||
|
||||
|
||||
var ec = echarts as any; |
||||
this.indexBzt = ec.init(document.getElementById('indexBzt'),'walden'); |
||||
var options={ |
||||
this.indexBzt = ec.init(document.getElementById("indexBzt"), "walden"); |
||||
var options = { |
||||
title: { |
||||
text: '删除单位统计(8900家)', |
||||
left: 'center', |
||||
top: "7%", |
||||
textStyle:{ |
||||
fontSize:31 |
||||
} |
||||
text: "删除单位统计(8900家)", |
||||
left: "center", |
||||
top: "7%", |
||||
textStyle: { |
||||
fontSize: 31, |
||||
}, |
||||
}, |
||||
tooltip: { |
||||
trigger: 'item', |
||||
//position: this.echartsData.tableTooltipNoShow2,
|
||||
formatter: (params)=>{ |
||||
//return this.biaogeTishi(params.name)
|
||||
return this.echartsData.biaogeTishiZhi(params.name) |
||||
}
|
||||
trigger: "item", |
||||
//position: this.echartsData.tableTooltipNoShow2,
|
||||
formatter: (params) => { |
||||
//return this.biaogeTishi(params.name)
|
||||
return this.echartsData.biaogeTishiZhi(params.name); |
||||
}, |
||||
}, |
||||
legend: { |
||||
orient: 'vertical', |
||||
right: 150, |
||||
top:80, |
||||
//padding:20,
|
||||
// itemWidth:60,
|
||||
// itemHeight:25,
|
||||
textStyle:{ |
||||
fontSize:18, |
||||
color:"#000000" |
||||
},
|
||||
data: ['高层', '地下', '轨道交通', '化工生产', '储罐类', '厂房', '古建筑', '商市场', '医院', '学校', '宾馆', '娱乐场所', '餐饮业', '影剧院', '展览建筑', '隧道'] |
||||
orient: "vertical", |
||||
right: 150, |
||||
top: 80, |
||||
//padding:20,
|
||||
// itemWidth:60,
|
||||
// itemHeight:25,
|
||||
textStyle: { |
||||
fontSize: 18, |
||||
color: "#000000", |
||||
}, |
||||
data: [ |
||||
"高层", |
||||
"地下", |
||||
"轨道交通", |
||||
"化工生产", |
||||
"储罐类", |
||||
"厂房", |
||||
"古建筑", |
||||
"商市场", |
||||
"医院", |
||||
"学校", |
||||
"宾馆", |
||||
"娱乐场所", |
||||
"餐饮业", |
||||
"影剧院", |
||||
"展览建筑", |
||||
"隧道", |
||||
], |
||||
}, |
||||
series: [ |
||||
{ |
||||
name: '访问来源', |
||||
type: 'pie', |
||||
radius: '65%', |
||||
center: ['50%', '60%'], |
||||
label:{ |
||||
show:true, |
||||
fontSize:18, |
||||
formatter:'{b}{c}家\n{d|({d}%)}', |
||||
{ |
||||
name: "访问来源", |
||||
type: "pie", |
||||
radius: "65%", |
||||
center: ["50%", "60%"], |
||||
label: { |
||||
show: true, |
||||
fontSize: 18, |
||||
formatter: "{b}{c}家\n{d|({d}%)}", |
||||
rich: { |
||||
d: { |
||||
align: 'center', |
||||
fontSize:18 |
||||
} |
||||
}, |
||||
|
||||
align: "center", |
||||
fontSize: 18, |
||||
}, |
||||
data: [ |
||||
{value: 500, name: '高层'}, |
||||
{value: 1300, name: '地下',itemStyle:{color:'#02A7F0'}}, |
||||
{value: 1500, name: '轨道交通'}, |
||||
{value: 1500, name: '化工生产'}, |
||||
{value: 1700, name: '储罐类'}, |
||||
{value: 800, name: '厂房'}, |
||||
{value: 1500, name: '古建筑'}, |
||||
{value: 1500, name: '商市场'}, |
||||
{value: 1700, name: '医院'}, |
||||
{value: 1700, name: '学校'}, |
||||
{value: 1700, name: '宾馆'}, |
||||
{value: 1700, name: '娱乐场所'}, |
||||
{value: 1700, name: '餐饮业'}, |
||||
{value: 1700, name: '影剧院'}, |
||||
{value: 1700, name: '展览建筑'}, |
||||
{value: 1700, name: '隧道'} |
||||
], |
||||
emphasis: { |
||||
itemStyle: { |
||||
shadowBlur: 10, |
||||
shadowOffsetX: 0, |
||||
shadowColor: 'rgba(0, 0, 0, 0.5)' |
||||
} |
||||
} |
||||
} |
||||
] |
||||
}, |
||||
}, |
||||
data: [ |
||||
{ value: 500, name: "高层" }, |
||||
{ value: 1300, name: "地下", itemStyle: { color: "#02A7F0" } }, |
||||
{ value: 1500, name: "轨道交通" }, |
||||
{ value: 1500, name: "化工生产" }, |
||||
{ value: 1700, name: "储罐类" }, |
||||
{ value: 800, name: "厂房" }, |
||||
{ value: 1500, name: "古建筑" }, |
||||
{ value: 1500, name: "商市场" }, |
||||
{ value: 1700, name: "医院" }, |
||||
{ value: 1700, name: "学校" }, |
||||
{ value: 1700, name: "宾馆" }, |
||||
{ value: 1700, name: "娱乐场所" }, |
||||
{ value: 1700, name: "餐饮业" }, |
||||
{ value: 1700, name: "影剧院" }, |
||||
{ value: 1700, name: "展览建筑" }, |
||||
{ value: 1700, name: "隧道" }, |
||||
], |
||||
emphasis: { |
||||
itemStyle: { |
||||
shadowBlur: 10, |
||||
shadowOffsetX: 0, |
||||
shadowColor: "rgba(0, 0, 0, 0.5)", |
||||
}, |
||||
}, |
||||
}, |
||||
], |
||||
}; |
||||
this.indexBzt.on('click', (params) => { |
||||
this.router.navigateByUrl('/statisticanalysis/delete_one/delete_two'); |
||||
this.indexBzt.on("click", (params) => { |
||||
this.router.navigateByUrl("/statisticanalysis/delete_one/delete_two"); |
||||
}); |
||||
this.indexBzt.setOption(options); |
||||
} |
||||
/** |
||||
* @name: 表格提示框封装 |
||||
* @test: test font |
||||
* @msg:
|
||||
* @msg: |
||||
* @param {string(表头)} |
||||
* @return {type}
|
||||
* @return {type} |
||||
*/ |
||||
biaogeTishi(biaotou:string){ |
||||
var shuju='[{"name":"浦东支队","number":"156","zhanbi":"3%"},{"name":"黄浦支队","number":"144","zhanbi":"2.8%"},' |
||||
shuju+='{"name":"徐汇支队","number":"133","zhanbi":"2.1%"},{"name":"长宁支队","number":"122","zhanbi":"1.6%"},' |
||||
shuju+='{"name":"静安支队","number":"120","zhanbi":"1.3%"},{"name":"普陀支队","number":"100","zhanbi":"1.1%"},' |
||||
shuju+='{"name":"虹口支队","number":"95","zhanbi":"1%"},{"name":"杨浦支队","number":"90","zhanbi":"0.9%"},' |
||||
shuju+='{"name":"闵行支队","number":"88","zhanbi":"0.8%"},{"name":"宝山支队","number":"83","zhanbi":"0.7%"},' |
||||
shuju+='{"name":"徐汇支队","number":"133","zhanbi":"2.1%"},{"name":"长宁支队","number":"122","zhanbi":"1.6%"},' |
||||
shuju+='{"name":"嘉定支队","number":"78","zhanbi":"0.6%"},{"name":"松江支队","number":"75","zhanbi":"0.5%"},' |
||||
shuju+='{"name":"金山支队","number":"65","zhanbi":"0.4%"},{"name":"崇明支队","number":"55","zhanbi":"0.3%"}]' |
||||
var jsonObj = JSON.parse(shuju); |
||||
var res = '<div class="tishi" style=" backgroundColor:rgba(255,255,255,1);width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span style="color:#000000;font-size:30px;text-align: center;display:block;">'+biaotou+'</span></div>' |
||||
res+='</br><div style="width:300px;height:100%;padding:0 20px 15px 20px"><table style="width:300px; background:#FFFFFF; color:#000000;border-collapse:collapse;"cellspacing="0"; >'; |
||||
res+='<thead><tr>'; |
||||
res+='<td style="text-align:center;width:30%;border:1px solid #000000">名称</td>'; |
||||
res+='<td style="text-align:center;width:30%;border:1px solid #000000">数量</td>' |
||||
res+='<td style="text-align:center;width:30%;border:1px solid #000000">总占比</td>' |
||||
res+='</tr></thead>' |
||||
res+='<tbody>'; |
||||
for(var i=0;i<jsonObj.length;i++){ |
||||
res+='<tr>' |
||||
res+='<td style="text-align:center;border:1px solid #000000">'+jsonObj[i].name+'</td>' |
||||
res+='<td style="text-align:center;border:1px solid #000000">'+jsonObj[i].number+'</td>' |
||||
res+='<td style="text-align:center;border:1px solid #000000">'+jsonObj[i].zhanbi+'</td></tr>' |
||||
} |
||||
|
||||
res+='</tbody>' |
||||
res+='<tfoot><td style="text-align:center;border:1px solid #000000">总计</td><td style="text-align:center;border:1px solid #000000">1356</td><td style="text-align:center;border:1px solid #000000">19%</td></tfoot>' |
||||
res+='</table></div></div>' |
||||
return res |
||||
} |
||||
biaogeTishi(biaotou: string) { |
||||
var shuju = |
||||
'[{"name":"浦东支队","number":"156","zhanbi":"3%"},{"name":"黄浦支队","number":"144","zhanbi":"2.8%"},'; |
||||
shuju += |
||||
'{"name":"徐汇支队","number":"133","zhanbi":"2.1%"},{"name":"长宁支队","number":"122","zhanbi":"1.6%"},'; |
||||
shuju += |
||||
'{"name":"静安支队","number":"120","zhanbi":"1.3%"},{"name":"普陀支队","number":"100","zhanbi":"1.1%"},'; |
||||
shuju += |
||||
'{"name":"虹口支队","number":"95","zhanbi":"1%"},{"name":"杨浦支队","number":"90","zhanbi":"0.9%"},'; |
||||
shuju += |
||||
'{"name":"闵行支队","number":"88","zhanbi":"0.8%"},{"name":"宝山支队","number":"83","zhanbi":"0.7%"},'; |
||||
shuju += |
||||
'{"name":"徐汇支队","number":"133","zhanbi":"2.1%"},{"name":"长宁支队","number":"122","zhanbi":"1.6%"},'; |
||||
shuju += |
||||
'{"name":"嘉定支队","number":"78","zhanbi":"0.6%"},{"name":"松江支队","number":"75","zhanbi":"0.5%"},'; |
||||
shuju += |
||||
'{"name":"金山支队","number":"65","zhanbi":"0.4%"},{"name":"崇明支队","number":"55","zhanbi":"0.3%"}]'; |
||||
var jsonObj = JSON.parse(shuju); |
||||
var res = |
||||
'<div class="tishi" style=" backgroundColor:rgba(255,255,255,1);width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span style="color:#000000;font-size:30px;text-align: center;display:block;">' + |
||||
biaotou + |
||||
"</span></div>"; |
||||
res += |
||||
'</br><div style="width:300px;height:100%;padding:0 20px 15px 20px"><table style="width:300px; background:#FFFFFF; color:#000000;border-collapse:collapse;"cellspacing="0"; >'; |
||||
res += "<thead><tr>"; |
||||
res += |
||||
'<td style="text-align:center;width:30%;border:1px solid #000000">名称</td>'; |
||||
res += |
||||
'<td style="text-align:center;width:30%;border:1px solid #000000">数量</td>'; |
||||
res += |
||||
'<td style="text-align:center;width:30%;border:1px solid #000000">总占比</td>'; |
||||
res += "</tr></thead>"; |
||||
res += "<tbody>"; |
||||
for (var i = 0; i < jsonObj.length; i++) { |
||||
res += "<tr>"; |
||||
res += |
||||
'<td style="text-align:center;border:1px solid #000000">' + |
||||
jsonObj[i].name + |
||||
"</td>"; |
||||
res += |
||||
'<td style="text-align:center;border:1px solid #000000">' + |
||||
jsonObj[i].number + |
||||
"</td>"; |
||||
res += |
||||
'<td style="text-align:center;border:1px solid #000000">' + |
||||
jsonObj[i].zhanbi + |
||||
"</td></tr>"; |
||||
} |
||||
|
||||
res += "</tbody>"; |
||||
res += |
||||
'<tfoot><td style="text-align:center;border:1px solid #000000">总计</td><td style="text-align:center;border:1px solid #000000">1356</td><td style="text-align:center;border:1px solid #000000">19%</td></tfoot>'; |
||||
res += "</table></div></div>"; |
||||
return res; |
||||
} |
||||
} |
||||
|
@ -1,227 +1,311 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
import { Router } from '@angular/router'; |
||||
import {MatDialog, MatDialogRef, MAT_DIALOG_DATA} from '@angular/material/dialog'; |
||||
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; |
||||
import { ActivatedRoute } from '@angular/router'; |
||||
import { EchartsDataService } from '../../echarts-data.service'; |
||||
import { Component, OnInit } from "@angular/core"; |
||||
import { Router } from "@angular/router"; |
||||
import { |
||||
MatDialog, |
||||
MatDialogRef, |
||||
MAT_DIALOG_DATA, |
||||
} from "@angular/material/dialog"; |
||||
import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar"; |
||||
import { ActivatedRoute } from "@angular/router"; |
||||
import { EchartsDataService } from "../../echarts-data.service"; |
||||
declare var echarts: any; |
||||
@Component({ |
||||
selector: 'app-delete-two-newadd', |
||||
templateUrl: './delete-two-newadd.component.html', |
||||
styleUrls: ['./delete-two-newadd.component.scss'] |
||||
selector: "app-delete-two-newadd", |
||||
templateUrl: "./delete-two-newadd.component.html", |
||||
styleUrls: ["./delete-two-newadd.component.scss"], |
||||
}) |
||||
export class DeleteTwoNewaddComponent implements OnInit { |
||||
constructor( |
||||
private router: Router, |
||||
public dialog: MatDialog, |
||||
public snackBar: MatSnackBar, |
||||
private serviceData: EchartsDataService, |
||||
public route: ActivatedRoute |
||||
) {} |
||||
|
||||
constructor(private router: Router,public dialog: MatDialog,public snackBar: MatSnackBar,private serviceData: EchartsDataService,public route: ActivatedRoute) { } |
||||
|
||||
year:String |
||||
buildingTypeName:String |
||||
level:String |
||||
setTimeoutObj//延时器需要清除
|
||||
year: String; |
||||
buildingTypeName: String; |
||||
level: String; |
||||
setTimeoutObj; //延时器需要清除
|
||||
ngOnInit(): void { |
||||
this.dateInit () |
||||
this.bianli() |
||||
this.route.queryParams.subscribe(params => { |
||||
this.year = params['level']; |
||||
this.buildingTypeName = params['headtext']; |
||||
this.dateInit(); |
||||
this.bianli(); |
||||
this.route.queryParams.subscribe((params) => { |
||||
this.year = params["level"]; |
||||
this.buildingTypeName = params["headtext"]; |
||||
}); |
||||
this.setTimeoutObj = window.setTimeout(() => { |
||||
this.detailEcharts(); |
||||
}); |
||||
this.setTimeoutObj = window.setTimeout(()=>{ |
||||
this.detailEcharts() |
||||
}) |
||||
} |
||||
ngOnDestroy(){ |
||||
ngOnDestroy() { |
||||
window.clearTimeout(this.setTimeoutObj); |
||||
this.detailPlanEchart.clear() |
||||
this.detailPlanEchart.dispose() |
||||
if (this.detailPlanEchart) { |
||||
this.detailPlanEchart.clear(); |
||||
this.detailPlanEchart.dispose(); |
||||
} |
||||
} |
||||
|
||||
selectType:string = 'month'; //选择当前的 查询类型 按月/年
|
||||
selectType: string = "month"; //选择当前的 查询类型 按月/年
|
||||
|
||||
//查询数据
|
||||
years:any = [] |
||||
selectMonth:any = [1,2,3,4,5,6,7,8,9,10,11,12] |
||||
years: any = []; |
||||
selectMonth: any = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]; |
||||
|
||||
//日期初始化
|
||||
dateInit () { |
||||
let date = (new Date()).getFullYear() |
||||
for (let i=date; i>=date-10;i--) { |
||||
this.years.unshift(i) |
||||
dateInit() { |
||||
let date = new Date().getFullYear(); |
||||
for (let i = date; i >= date - 10; i--) { |
||||
this.years.unshift(i); |
||||
} |
||||
} |
||||
selectOneYear:any = (new Date()).getFullYear() //开始年份
|
||||
selectStartMonth:any = 1 //开始月份
|
||||
Submit (e) { |
||||
|
||||
} |
||||
selectStartYear:any = (new Date()).getFullYear() //开始年份
|
||||
selectOneYear: any = new Date().getFullYear(); //开始年份
|
||||
selectStartMonth: any = 1; //开始月份
|
||||
Submit(e) {} |
||||
selectStartYear: any = new Date().getFullYear(); //开始年份
|
||||
|
||||
topTextlabel = { |
||||
show: true, // 开启显示
|
||||
position: 'top', // 在上方显示
|
||||
position: "top", // 在上方显示
|
||||
distance: 10, // 距离图形元素的距离。当 position 为字符描述值(如 'top'、'insideRight')时候有效。
|
||||
verticalAlign: 'middle', |
||||
textStyle: { // 数值样式
|
||||
color: 'black', |
||||
fontSize: 12 |
||||
} |
||||
}//柱状图数值顶部显示
|
||||
zhongNameData = ["浦东中队","黄浦中队","徐汇中队","长宁中队","静安中队","普陀中队","虹口中队","杨浦中队","闵行中队","宝山中队","嘉定中队"] |
||||
zhongNumData = [0,0,0,0,0,0,0,0,0,0,0] |
||||
verticalAlign: "middle", |
||||
textStyle: { |
||||
// 数值样式
|
||||
color: "black", |
||||
fontSize: 12, |
||||
}, |
||||
}; //柱状图数值顶部显示
|
||||
zhongNameData = [ |
||||
"浦东中队", |
||||
"黄浦中队", |
||||
"徐汇中队", |
||||
"长宁中队", |
||||
"静安中队", |
||||
"普陀中队", |
||||
"虹口中队", |
||||
"杨浦中队", |
||||
"闵行中队", |
||||
"宝山中队", |
||||
"嘉定中队", |
||||
]; |
||||
zhongNumData = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; |
||||
|
||||
zhiNameData = ["浦东支队","黄浦支队","徐汇支队","长宁支队","静安支队","普陀支队","虹口支队","杨浦支队","闵行支队","宝山支队","嘉定支队"] |
||||
zhiNumData = [0,0,0,0,0,0,0,0,0,0,0] |
||||
tiaoshiPao:any |
||||
zhiNameData = [ |
||||
"浦东支队", |
||||
"黄浦支队", |
||||
"徐汇支队", |
||||
"长宁支队", |
||||
"静安支队", |
||||
"普陀支队", |
||||
"虹口支队", |
||||
"杨浦支队", |
||||
"闵行支队", |
||||
"宝山支队", |
||||
"嘉定支队", |
||||
]; |
||||
zhiNumData = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; |
||||
tiaoshiPao: any; |
||||
//气泡提示数据获取
|
||||
bianli(){ |
||||
var arrshuzu='['; |
||||
for(var i=0;i<this.dateNum.length;i++){ |
||||
arrshuzu+='{"value":'+this.dateNum[i]+',"coord":['+i+','+this.dateNum[i]+'],"name":'+'"'+this.date[i]+'"'+'},' |
||||
bianli() { |
||||
var arrshuzu = "["; |
||||
for (var i = 0; i < this.dateNum.length; i++) { |
||||
arrshuzu += |
||||
'{"value":' + |
||||
this.dateNum[i] + |
||||
',"coord":[' + |
||||
i + |
||||
"," + |
||||
this.dateNum[i] + |
||||
'],"name":' + |
||||
'"' + |
||||
this.date[i] + |
||||
'"' + |
||||
"},"; |
||||
} |
||||
arrshuzu=arrshuzu.substring(0,arrshuzu.length-1) |
||||
arrshuzu+=']' |
||||
this.tiaoshiPao=JSON.parse(arrshuzu) |
||||
arrshuzu = arrshuzu.substring(0, arrshuzu.length - 1); |
||||
arrshuzu += "]"; |
||||
this.tiaoshiPao = JSON.parse(arrshuzu); |
||||
//return tishiPao
|
||||
} |
||||
//返回
|
||||
goBack () { |
||||
history.go(-1) |
||||
goBack() { |
||||
history.go(-1); |
||||
//this.echartsData.statefulInspectionToggle = true
|
||||
} |
||||
|
||||
detailPlanEchart |
||||
option |
||||
date = ['高层', '轨道交通', '储罐类', '古建筑', '地下', '化工生产', '厂房', '商市场'] |
||||
dateNum = [0, 0, 0, 0, 0, 0, 0, 0] |
||||
detailPlanEchart; |
||||
option; |
||||
date = [ |
||||
"高层", |
||||
"轨道交通", |
||||
"储罐类", |
||||
"古建筑", |
||||
"地下", |
||||
"化工生产", |
||||
"厂房", |
||||
"商市场", |
||||
]; |
||||
dateNum = [0, 0, 0, 0, 0, 0, 0, 0]; |
||||
|
||||
detailEcharts(){ |
||||
this.detailPlanEchart = echarts.init(document.getElementById('barEchart'), 'skinUpp');
|
||||
detailEcharts() { |
||||
this.detailPlanEchart = echarts.init( |
||||
document.getElementById("barEchart"), |
||||
"skinUpp" |
||||
); |
||||
this.option = { |
||||
grid: { |
||||
top: 90, |
||||
left:40, |
||||
left: 40, |
||||
right: 20, |
||||
//bottom: 20,
|
||||
}, |
||||
// 标题
|
||||
title: { |
||||
text: this.buildingTypeName + '(' + this.year + ')', |
||||
text: this.buildingTypeName + "(" + this.year + ")", |
||||
top: -4, |
||||
left: 'center', |
||||
textStyle:{ |
||||
left: "center", |
||||
textStyle: { |
||||
//文字颜色
|
||||
color:'#000', |
||||
fontSize: 30 |
||||
} |
||||
color: "#000", |
||||
fontSize: 30, |
||||
}, |
||||
}, |
||||
//提示框
|
||||
tooltip: { |
||||
trigger: 'axis', |
||||
formatter: (params)=>{ |
||||
if(params[0].seriesName == "year"){ |
||||
return this.serviceData.tableTooltip(this.serviceData.monthTooltip,params[0].name) |
||||
}else{ |
||||
return this.serviceData.tableTooltip(this.serviceData.tableDataZhi,params[0].name) |
||||
trigger: "axis", |
||||
formatter: (params) => { |
||||
if (params[0].seriesName == "year") { |
||||
return this.serviceData.tableTooltip( |
||||
this.serviceData.monthTooltip, |
||||
params[0].name |
||||
); |
||||
} else { |
||||
return this.serviceData.tableTooltip( |
||||
this.serviceData.tableDataZhi, |
||||
params[0].name |
||||
); |
||||
} |
||||
}, |
||||
position:this.serviceData.tableTooltipNoShow2 |
||||
position: this.serviceData.tableTooltipNoShow2, |
||||
}, |
||||
// x轴
|
||||
xAxis: { |
||||
type: 'category', |
||||
type: "category", |
||||
data: this.date, |
||||
axisLabel: { |
||||
color: "#000", //刻度线标签颜色
|
||||
textStyle:{ |
||||
fontSize :18, |
||||
color:'#000000' |
||||
} |
||||
textStyle: { |
||||
fontSize: 18, |
||||
color: "#000000", |
||||
}, |
||||
}, |
||||
//设置坐标轴字体颜色和宽度
|
||||
axisLine: {
|
||||
axisLine: { |
||||
lineStyle: { |
||||
color: "#000", |
||||
}, |
||||
}, |
||||
splitLine: {//分割线配置
|
||||
show:true, |
||||
splitLine: { |
||||
//分割线配置
|
||||
show: true, |
||||
lineStyle: { |
||||
color: '#999', |
||||
} |
||||
} |
||||
color: "#999", |
||||
}, |
||||
}, |
||||
}, |
||||
// y轴
|
||||
yAxis: { |
||||
type: 'value', |
||||
name: '个', |
||||
type: "value", |
||||
name: "个", |
||||
axisLabel: { |
||||
//color: "#000", //刻度线标签颜色
|
||||
textStyle:{ |
||||
fontSize :18, |
||||
color:'#000000' |
||||
} |
||||
textStyle: { |
||||
fontSize: 18, |
||||
color: "#000000", |
||||
}, |
||||
}, |
||||
//设置坐标轴字体颜色和宽度
|
||||
axisLine: { |
||||
//设置坐标轴字体颜色和宽度
|
||||
axisLine: { |
||||
lineStyle: { |
||||
color: "#000", |
||||
} |
||||
} |
||||
}, |
||||
}, |
||||
}, |
||||
// 数据
|
||||
series: [{ |
||||
name: 'xxx', |
||||
type: 'line', |
||||
series: [ |
||||
{ |
||||
name: "xxx", |
||||
type: "line", |
||||
markPoint: { |
||||
symbolSize:[65, 65], |
||||
data: this.tiaoshiPao |
||||
}, |
||||
symbolSize: [65, 65], |
||||
data: this.tiaoshiPao, |
||||
}, |
||||
data: this.dateNum, |
||||
} |
||||
}, |
||||
], |
||||
}; |
||||
this.detailPlanEchart.setOption(this.option); |
||||
this.detailPlanEchart.getZr().on('click',params=>{ |
||||
const pointInPixel= [params.offsetX, params.offsetY]; |
||||
if (this.detailPlanEchart.containPixel('grid',pointInPixel)) { |
||||
let xIndex=this.detailPlanEchart.convertFromPixel({seriesIndex:0},[params.offsetX, params.offsetY])[0]; |
||||
this.detailPlanEchart.getZr().on("click", (params) => { |
||||
const pointInPixel = [params.offsetX, params.offsetY]; |
||||
if (this.detailPlanEchart.containPixel("grid", pointInPixel)) { |
||||
let xIndex = this.detailPlanEchart.convertFromPixel( |
||||
{ seriesIndex: 0 }, |
||||
[params.offsetX, params.offsetY] |
||||
)[0]; |
||||
/*事件处理代码书写位置*/ |
||||
if(this.serviceData.level=='0'){ |
||||
this.router.navigate(['/statisticanalysis/delete_one/delete_there'],{queryParams:{'level':this.option.xAxis.data[xIndex],'headtext':this.buildingTypeName,'zhong':'1'}}); |
||||
}else if(this.serviceData.level=='1'){ |
||||
this.router.navigate(['/statisticanalysis/delete_one/delete_four'],{queryParams:{'level':this.option.xAxis.data[xIndex]+this.buildingTypeName}}); |
||||
if (this.serviceData.level == "0") { |
||||
this.router.navigate(["/statisticanalysis/delete_one/delete_there"], { |
||||
queryParams: { |
||||
level: this.option.xAxis.data[xIndex], |
||||
headtext: this.buildingTypeName, |
||||
zhong: "1", |
||||
}, |
||||
}); |
||||
} else if (this.serviceData.level == "1") { |
||||
this.router.navigate(["/statisticanalysis/delete_one/delete_four"], { |
||||
queryParams: { |
||||
level: this.option.xAxis.data[xIndex] + this.buildingTypeName, |
||||
}, |
||||
}); |
||||
} |
||||
|
||||
} |
||||
}); |
||||
} |
||||
//返回按钮
|
||||
backBtn(){ |
||||
window.history.go(-1) |
||||
}
|
||||
|
||||
tableTooltip(params:any){ |
||||
var data = [ |
||||
{name:params.name,number:params.value,zhanbi:(params.value/1340 * 100).toFixed(2) + "%"} |
||||
] |
||||
var res = '<div class="tishi" style=" backgroundColor:rgba(255,255,255,1);width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span style="color:#FFFFFF;font-size:27px;text-align: center;display:block;">'+params.name+'</span></div>' |
||||
res+='</br><div style="width:300px;height:100%;padding:0 20px 15px 20px"><table style="width:300px;font-size:16px; color:#FFFFFF;border-collapse:collapse;"cellspacing="0"; >'; |
||||
res+='<thead style="font-size:18px;"><tr>'; |
||||
res+='<td style="text-align:center;width:30%;">名称</td>'; |
||||
res+='<td style="text-align:center;width:30%;">数量</td>' |
||||
res+='<td style="text-align:center;width:30%;">总占比</td>' |
||||
res+='</tr></thead>' |
||||
res+='<tbody>'; |
||||
for(var i=0;i<data.length;i++){ |
||||
res+='<tr>' |
||||
res+='<td style="text-align:center;">'+data[i].name+'</td>' |
||||
res+='<td style="text-align:center;">'+data[i].number+'</td>' |
||||
res+='<td style="text-align:center;">'+data[i].zhanbi+'</td></tr>' |
||||
} |
||||
|
||||
res+='</tbody>' |
||||
// res+='<tfoot><td style="text-align:center;border:1px solid #000000">总计</td><td style="text-align:center;border:1px solid #000000">1356</td><td style="text-align:center;border:1px solid #000000">19%</td></tfoot>'
|
||||
res+='</table></div></div>' |
||||
return res |
||||
backBtn() { |
||||
window.history.go(-1); |
||||
} |
||||
|
||||
tableTooltip(params: any) { |
||||
var data = [ |
||||
{ |
||||
name: params.name, |
||||
number: params.value, |
||||
zhanbi: ((params.value / 1340) * 100).toFixed(2) + "%", |
||||
}, |
||||
]; |
||||
var res = |
||||
'<div class="tishi" style=" backgroundColor:rgba(255,255,255,1);width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span style="color:#FFFFFF;font-size:27px;text-align: center;display:block;">' + |
||||
params.name + |
||||
"</span></div>"; |
||||
res += |
||||
'</br><div style="width:300px;height:100%;padding:0 20px 15px 20px"><table style="width:300px;font-size:16px; color:#FFFFFF;border-collapse:collapse;"cellspacing="0"; >'; |
||||
res += '<thead style="font-size:18px;"><tr>'; |
||||
res += '<td style="text-align:center;width:30%;">名称</td>'; |
||||
res += '<td style="text-align:center;width:30%;">数量</td>'; |
||||
res += '<td style="text-align:center;width:30%;">总占比</td>'; |
||||
res += "</tr></thead>"; |
||||
res += "<tbody>"; |
||||
for (var i = 0; i < data.length; i++) { |
||||
res += "<tr>"; |
||||
res += '<td style="text-align:center;">' + data[i].name + "</td>"; |
||||
res += '<td style="text-align:center;">' + data[i].number + "</td>"; |
||||
res += '<td style="text-align:center;">' + data[i].zhanbi + "</td></tr>"; |
||||
} |
||||
|
||||
res += "</tbody>"; |
||||
// res+='<tfoot><td style="text-align:center;border:1px solid #000000">总计</td><td style="text-align:center;border:1px solid #000000">1356</td><td style="text-align:center;border:1px solid #000000">19%</td></tfoot>'
|
||||
res += "</table></div></div>"; |
||||
return res; |
||||
} |
||||
} |
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,310 +1,543 @@
|
||||
/* |
||||
* @Descripttion:
|
||||
* @version:
|
||||
* @Descripttion: |
||||
* @version: |
||||
* @Author: sueRimn |
||||
* @Date: 2020-09-01 15:24:39 |
||||
* @LastEditors: sueRimn |
||||
* @LastEditTime: 2021-07-21 08:54:04 |
||||
*/ |
||||
import { Component, OnInit } from '@angular/core'; |
||||
import { Router } from '@angular/router'; |
||||
import {EchartsDataService,} from '../../echarts-data.service' |
||||
import { Component, OnInit } from "@angular/core"; |
||||
import { Router } from "@angular/router"; |
||||
import { EchartsDataService } from "../../echarts-data.service"; |
||||
declare var echarts: any; |
||||
declare var CryptoJS |
||||
declare var CryptoJS; |
||||
|
||||
@Component({ |
||||
selector: 'app-page-one', |
||||
templateUrl: './page-one.component.html', |
||||
styleUrls: ['./page-one.component.scss'] |
||||
selector: "app-page-one", |
||||
templateUrl: "./page-one.component.html", |
||||
styleUrls: ["./page-one.component.scss"], |
||||
}) |
||||
export class PageOneComponent implements OnInit { |
||||
options:any; |
||||
|
||||
constructor(private router: Router,public echartsData:EchartsDataService) { } |
||||
options: any; |
||||
|
||||
padHw |
||||
orid |
||||
constructor(private router: Router, public echartsData: EchartsDataService) {} |
||||
|
||||
padHw; |
||||
orid; |
||||
ngOnInit() { |
||||
if(window.matchMedia("(max-width: 1400px)").matches){ |
||||
this.padHw=true |
||||
if (window.matchMedia("(max-width: 1400px)").matches) { |
||||
this.padHw = true; |
||||
//this.padjt=
|
||||
}else{ |
||||
this.padHw=false |
||||
} else { |
||||
this.padHw = false; |
||||
} |
||||
if(sessionStorage.getItem('refresh') === 'true') { |
||||
sessionStorage.removeItem('refresh'); |
||||
if (sessionStorage.getItem("refresh") === "true") { |
||||
sessionStorage.removeItem("refresh"); |
||||
location.reload(); |
||||
} |
||||
|
||||
window.setTimeout(()=>{ |
||||
this.getechartsdata() |
||||
}) |
||||
} |
||||
|
||||
window.setTimeout(() => { |
||||
this.getechartsdata(); |
||||
}); |
||||
let jwt = sessionStorage.getItem("token"); |
||||
let rawJwt = CryptoJS.enc.Base64.parse(jwt.split('.')[1]); |
||||
let rawJwt = CryptoJS.enc.Base64.parse(jwt.split(".")[1]); |
||||
let identityJson = CryptoJS.enc.Utf8.stringify(rawJwt); |
||||
let identityJsonparse=JSON.parse(identityJson) |
||||
this.orid=identityJsonparse.oid |
||||
let identityJsonparse = JSON.parse(identityJson); |
||||
this.orid = identityJsonparse.oid; |
||||
//console.log(identityJsonparse)
|
||||
} |
||||
ngOnDestroy(): void { |
||||
this.indexBzt.clear() |
||||
this.indexBzt.dispose() |
||||
if (!this.indexBzt) { |
||||
return; |
||||
} |
||||
this.indexBzt.clear(); |
||||
this.indexBzt.dispose(); |
||||
} |
||||
async getechartsdata(){ |
||||
await this.echartsData.getData(null,`/api/StatisticsAnalysis/Plans`) |
||||
this.initCharts("pieone") |
||||
this.initCharts("pietwo") |
||||
async getechartsdata() { |
||||
await this.echartsData.getData(null, `/api/StatisticsAnalysis/Plans`); |
||||
this.initCharts("pieone"); |
||||
this.initCharts("pietwo"); |
||||
} |
||||
//级别和类型转换
|
||||
pieonetype=true//级别
|
||||
clickhuan(){ |
||||
this.pieonetype=!this.pieonetype |
||||
this.initCharts("pieone") |
||||
pieonetype = true; //级别
|
||||
clickhuan() { |
||||
this.pieonetype = !this.pieonetype; |
||||
this.initCharts("pieone"); |
||||
} |
||||
|
||||
/* 首页饼状图 */ |
||||
indexBzt |
||||
tabledata |
||||
count |
||||
indexData |
||||
planCategoriesData=[]//预案级别
|
||||
planStatusesData=[]//预案状态
|
||||
planTypeStatisticsdata=[]//预案类型
|
||||
initCharts(tid){ |
||||
this.planTypeStatisticsdata=[] |
||||
this.planCategoriesData=[] |
||||
this.tabledata=JSON.parse(JSON.stringify(this.echartsData.allDate)) |
||||
if(tid=='pieone') |
||||
{ |
||||
if(this.pieonetype){ |
||||
this.tabledata[0].planCategoryStatistics.planCategories.forEach((value,index,array) => { |
||||
if(array[index].planCategoryName=='LevelOne'){ |
||||
this.planCategoriesData.push({name:'Ⅰ级预案',value:array[index].count,planStatusName:array[index].planCategoryName,type:1}) |
||||
}else if(array[index].planCategoryName=='LevelTwo'){ |
||||
this.planCategoriesData.push({name:'Ⅱ级预案',value:array[index].count,planStatusName:array[index].planCategoryName,type:2}) |
||||
}else if(array[index].planCategoryName=='LevelThree'){ |
||||
this.planCategoriesData.push({name:'Ⅲ级预案',value:array[index].count,planStatusName:array[index].planCategoryName,type:3}) |
||||
}else if(array[index].planCategoryName=='LevelFour'){ |
||||
this.planCategoriesData.push({name:'Ⅳ级预案',value:array[index].count,planStatusName:array[index].planCategoryName,type:4}) |
||||
}else if(array[index].planCategoryName=='LevelFive'){ |
||||
this.planCategoriesData.push({name:'Ⅴ级预案',value:array[index].count,planStatusName:array[index].planCategoryName,type:5}) |
||||
indexBzt; |
||||
tabledata; |
||||
count; |
||||
indexData; |
||||
planCategoriesData = []; //预案级别
|
||||
planStatusesData = []; //预案状态
|
||||
planTypeStatisticsdata = []; //预案类型
|
||||
initCharts(tid) { |
||||
this.planTypeStatisticsdata = []; |
||||
this.planCategoriesData = []; |
||||
this.tabledata = JSON.parse(JSON.stringify(this.echartsData.allDate)); |
||||
if (tid == "pieone") { |
||||
if (this.pieonetype) { |
||||
this.tabledata[0].planCategoryStatistics.planCategories.forEach( |
||||
(value, index, array) => { |
||||
if (array[index].planCategoryName == "LevelOne") { |
||||
this.planCategoriesData.push({ |
||||
name: "Ⅰ级预案", |
||||
value: array[index].count, |
||||
planStatusName: array[index].planCategoryName, |
||||
type: 1, |
||||
}); |
||||
} else if (array[index].planCategoryName == "LevelTwo") { |
||||
this.planCategoriesData.push({ |
||||
name: "Ⅱ级预案", |
||||
value: array[index].count, |
||||
planStatusName: array[index].planCategoryName, |
||||
type: 2, |
||||
}); |
||||
} else if (array[index].planCategoryName == "LevelThree") { |
||||
this.planCategoriesData.push({ |
||||
name: "Ⅲ级预案", |
||||
value: array[index].count, |
||||
planStatusName: array[index].planCategoryName, |
||||
type: 3, |
||||
}); |
||||
} else if (array[index].planCategoryName == "LevelFour") { |
||||
this.planCategoriesData.push({ |
||||
name: "Ⅳ级预案", |
||||
value: array[index].count, |
||||
planStatusName: array[index].planCategoryName, |
||||
type: 4, |
||||
}); |
||||
} else if (array[index].planCategoryName == "LevelFive") { |
||||
this.planCategoriesData.push({ |
||||
name: "Ⅴ级预案", |
||||
value: array[index].count, |
||||
planStatusName: array[index].planCategoryName, |
||||
type: 5, |
||||
}); |
||||
} |
||||
} |
||||
}); |
||||
}else{ |
||||
this.tabledata[0].planTypeStatistics.planTypes.forEach((value,index,array) => { |
||||
if(array[index].planTypeName=='Plan2D'){ |
||||
this.planTypeStatisticsdata.push({name:'二维预案',value:array[index].count,planStatusName:array[index].planTypeName,type:1}) |
||||
}else if(array[index].planTypeName=='Plan3D'){ |
||||
this.planTypeStatisticsdata.push({name:'三维预案',value:array[index].count,planStatusName:array[index].planTypeName,type:2}) |
||||
}else if(array[index].planTypeName=='Other'){ |
||||
this.planTypeStatisticsdata.push({name:'其它预案',value:array[index].count,planStatusName:array[index].planTypeName,type:3}) |
||||
}else if(array[index].planTypeName=='PlanText'){ |
||||
this.planTypeStatisticsdata.push({name:'文本预案',value:array[index].count,planStatusName:array[index].planTypeName,type:4}) |
||||
); |
||||
} else { |
||||
this.tabledata[0].planTypeStatistics.planTypes.forEach( |
||||
(value, index, array) => { |
||||
if (array[index].planTypeName == "Plan2D") { |
||||
this.planTypeStatisticsdata.push({ |
||||
name: "二维预案", |
||||
value: array[index].count, |
||||
planStatusName: array[index].planTypeName, |
||||
type: 1, |
||||
}); |
||||
} else if (array[index].planTypeName == "Plan3D") { |
||||
this.planTypeStatisticsdata.push({ |
||||
name: "三维预案", |
||||
value: array[index].count, |
||||
planStatusName: array[index].planTypeName, |
||||
type: 2, |
||||
}); |
||||
} else if (array[index].planTypeName == "Other") { |
||||
this.planTypeStatisticsdata.push({ |
||||
name: "其它预案", |
||||
value: array[index].count, |
||||
planStatusName: array[index].planTypeName, |
||||
type: 3, |
||||
}); |
||||
} else if (array[index].planTypeName == "PlanText") { |
||||
this.planTypeStatisticsdata.push({ |
||||
name: "文本预案", |
||||
value: array[index].count, |
||||
planStatusName: array[index].planTypeName, |
||||
type: 4, |
||||
}); |
||||
} |
||||
} |
||||
}); |
||||
); |
||||
} |
||||
|
||||
}else{ |
||||
this.tabledata[0].planStatusStatistics.planStatuses.forEach((value,index,array) => { |
||||
if(array[index].planStatusName=='New'){ |
||||
this.planStatusesData.push({name:'预案新增',value:array[index].count,type:1,planStatusName:array[index].planStatusName}) |
||||
}else if(array[index].planStatusName=='Auditing'){ |
||||
this.planStatusesData.push({name:'预案审核中',value:array[index].count,type:2,planStatusName:array[index].planStatusName}) |
||||
}else if(array[index].planStatusName=='Approved'){ |
||||
this.planStatusesData.push({name:'预案审核通过',value:array[index].count,type:3,planStatusName:array[index].planStatusName}) |
||||
}else if(array[index].planStatusName=='Rejected'){ |
||||
this.planStatusesData.push({name:'预案审核退回',value:array[index].count,type:4,planStatusName:array[index].planStatusName}) |
||||
}else if(array[index].planStatusName=='Editing'){ |
||||
this.planStatusesData.push({name:'预案编制',value:array[index].count,type:5,planStatusName:array[index].planStatusName}) |
||||
} else { |
||||
this.tabledata[0].planStatusStatistics.planStatuses.forEach( |
||||
(value, index, array) => { |
||||
if (array[index].planStatusName == "New") { |
||||
this.planStatusesData.push({ |
||||
name: "预案新增", |
||||
value: array[index].count, |
||||
type: 1, |
||||
planStatusName: array[index].planStatusName, |
||||
}); |
||||
} else if (array[index].planStatusName == "Auditing") { |
||||
this.planStatusesData.push({ |
||||
name: "预案审核中", |
||||
value: array[index].count, |
||||
type: 2, |
||||
planStatusName: array[index].planStatusName, |
||||
}); |
||||
} else if (array[index].planStatusName == "Approved") { |
||||
this.planStatusesData.push({ |
||||
name: "预案审核通过", |
||||
value: array[index].count, |
||||
type: 3, |
||||
planStatusName: array[index].planStatusName, |
||||
}); |
||||
} else if (array[index].planStatusName == "Rejected") { |
||||
this.planStatusesData.push({ |
||||
name: "预案审核退回", |
||||
value: array[index].count, |
||||
type: 4, |
||||
planStatusName: array[index].planStatusName, |
||||
}); |
||||
} else if (array[index].planStatusName == "Editing") { |
||||
this.planStatusesData.push({ |
||||
name: "预案编制", |
||||
value: array[index].count, |
||||
type: 5, |
||||
planStatusName: array[index].planStatusName, |
||||
}); |
||||
} |
||||
} |
||||
}); |
||||
); |
||||
} |
||||
|
||||
|
||||
|
||||
var ec = echarts as any; |
||||
this.indexBzt = ec.init(document.getElementById(tid),'walden'); |
||||
var options={ |
||||
this.indexBzt = ec.init(document.getElementById(tid), "walden"); |
||||
var options = { |
||||
title: { |
||||
text:tid=='pieone'&&this.pieonetype?`预案级别统计(${this.tabledata[0].planCategoryStatistics.totalCount}份)` :tid=='pieone'&&!this.pieonetype?`预案类型统计(${this.tabledata[0].planTypeStatistics.totalCount}份)`:`预案状态统计(${this.tabledata[0].planStatusStatistics.totalCount}份)`, |
||||
top: "7%", |
||||
left: 'center', |
||||
textStyle:{ |
||||
fontSize:this.padHw?25: 31 |
||||
} |
||||
text: |
||||
tid == "pieone" && this.pieonetype |
||||
? `预案级别统计(${this.tabledata[0].planCategoryStatistics.totalCount}份)` |
||||
: tid == "pieone" && !this.pieonetype |
||||
? `预案类型统计(${this.tabledata[0].planTypeStatistics.totalCount}份)` |
||||
: `预案状态统计(${this.tabledata[0].planStatusStatistics.totalCount}份)`, |
||||
top: "7%", |
||||
left: "center", |
||||
textStyle: { |
||||
fontSize: this.padHw ? 25 : 31, |
||||
}, |
||||
}, |
||||
tooltip: { |
||||
trigger: 'item', |
||||
formatter: (params)=>{ |
||||
this.echartsData.biaogeTishiyuan(params.data,tid,this.pieonetype) |
||||
return this.echartsData.res |
||||
} |
||||
trigger: "item", |
||||
formatter: (params) => { |
||||
this.echartsData.biaogeTishiyuan(params.data, tid, this.pieonetype); |
||||
return this.echartsData.res; |
||||
}, |
||||
}, |
||||
legend: { |
||||
bottom: 50, |
||||
left: 'center', |
||||
//padding:20,
|
||||
// itemWidth:60,
|
||||
// itemHeight:25,
|
||||
textStyle:{ |
||||
fontSize:this.padHw?15: 18, |
||||
color:"#000000" |
||||
}, |
||||
data:tid=='pieone'&&this.pieonetype?['Ⅰ级预案', 'Ⅱ级预案', 'Ⅲ级预案', 'Ⅳ级预案', 'Ⅴ级预案']:tid=='pieone'&&!this.pieonetype?['二维预案', '三维预案', '其它预案', '文本预案'] :['预案新增', '预案审核通过', '预案编制', '预案审核退回', '预案审核中'] |
||||
left: "center", |
||||
//padding:20,
|
||||
// itemWidth:60,
|
||||
// itemHeight:25,
|
||||
textStyle: { |
||||
fontSize: this.padHw ? 15 : 18, |
||||
color: "#000000", |
||||
}, |
||||
data: |
||||
tid == "pieone" && this.pieonetype |
||||
? ["Ⅰ级预案", "Ⅱ级预案", "Ⅲ级预案", "Ⅳ级预案", "Ⅴ级预案"] |
||||
: tid == "pieone" && !this.pieonetype |
||||
? ["二维预案", "三维预案", "其它预案", "文本预案"] |
||||
: [ |
||||
"预案新增", |
||||
"预案审核通过", |
||||
"预案编制", |
||||
"预案审核退回", |
||||
"预案审核中", |
||||
], |
||||
}, |
||||
series: [ |
||||
{ |
||||
name: '访问来源', |
||||
type: 'pie', |
||||
radius: '50%', |
||||
center: ['50%', '45%'], |
||||
label:{ |
||||
normal:{ |
||||
show:true, |
||||
// position: 'inner',
|
||||
fontSize:this.padHw?14: 18, |
||||
formatter:this.padHw?'{b} \n{c}份({d}%)' :'{b} {c}份\n({d}%)', |
||||
}, |
||||
rich: { |
||||
d: { |
||||
align: 'center', |
||||
} |
||||
}, |
||||
|
||||
{ |
||||
name: "访问来源", |
||||
type: "pie", |
||||
radius: "50%", |
||||
center: ["50%", "45%"], |
||||
label: { |
||||
normal: { |
||||
show: true, |
||||
// position: 'inner',
|
||||
fontSize: this.padHw ? 14 : 18, |
||||
formatter: this.padHw ? "{b} \n{c}份({d}%)" : "{b} {c}份\n({d}%)", |
||||
}, |
||||
rich: { |
||||
d: { |
||||
align: "center", |
||||
}, |
||||
data:tid=='pieone'&&this.pieonetype?this.planCategoriesData:tid=='pieone'&&!this.pieonetype?this.planTypeStatisticsdata:this.planStatusesData, |
||||
emphasis: { |
||||
itemStyle: { |
||||
shadowBlur: 10, |
||||
shadowOffsetX: 0, |
||||
shadowColor: 'rgba(0, 0, 0, 0.5)' |
||||
} |
||||
} |
||||
} |
||||
] |
||||
}, |
||||
}, |
||||
data: |
||||
tid == "pieone" && this.pieonetype |
||||
? this.planCategoriesData |
||||
: tid == "pieone" && !this.pieonetype |
||||
? this.planTypeStatisticsdata |
||||
: this.planStatusesData, |
||||
emphasis: { |
||||
itemStyle: { |
||||
shadowBlur: 10, |
||||
shadowOffsetX: 0, |
||||
shadowColor: "rgba(0, 0, 0, 0.5)", |
||||
}, |
||||
}, |
||||
}, |
||||
], |
||||
}; |
||||
this.indexBzt.on('click', (params) => { |
||||
this.indexBzt.on("click", (params) => { |
||||
// console.log(params)
|
||||
if(tid=='pieone'){ |
||||
if(this.pieonetype){ |
||||
for(var i=0;i<this.tabledata[0].planCategoryStatistics.planCategories.length;i++){ |
||||
if(this.tabledata[0].planCategoryStatistics.planCategories[i].planCategoryName==params.data.planStatusName){ |
||||
if((this.echartsData.level=='0'||this.echartsData.level=='1'||this.echartsData.level=='2')&&this.tabledata[0].planCategoryStatistics.planCategories[i].organizations.length>0){ |
||||
this.tabledata[0].planCategoryStatistics.planCategories[i].organizations.forEach((element,index,array) => { |
||||
if(array[index].organizationId==this.orid){ |
||||
array.splice(index,1) |
||||
if (tid == "pieone") { |
||||
if (this.pieonetype) { |
||||
for ( |
||||
var i = 0; |
||||
i < this.tabledata[0].planCategoryStatistics.planCategories.length; |
||||
i++ |
||||
) { |
||||
if ( |
||||
this.tabledata[0].planCategoryStatistics.planCategories[i] |
||||
.planCategoryName == params.data.planStatusName |
||||
) { |
||||
if ( |
||||
(this.echartsData.level == "0" || |
||||
this.echartsData.level == "1" || |
||||
this.echartsData.level == "2") && |
||||
this.tabledata[0].planCategoryStatistics.planCategories[i] |
||||
.organizations.length > 0 |
||||
) { |
||||
this.tabledata[0].planCategoryStatistics.planCategories[ |
||||
i |
||||
].organizations.forEach((element, index, array) => { |
||||
if (array[index].organizationId == this.orid) { |
||||
array.splice(index, 1); |
||||
} |
||||
window.setTimeout(()=>{ |
||||
if(array.length>0){ |
||||
this.router.navigate(['/statisticanalysis/statePageOne/time'],{queryParams:{'level':params.name,'type':params.data.type,'tid':'pieone','pieonetype':this.pieonetype}}); |
||||
} |
||||
else{ |
||||
this.router.navigate(['/statisticanalysis/AllPlan'],{queryParams:{'xname':params.name,'name':params.name,'id':null,'type':params.data.type,'tid':'pieone','pieonetype':this.pieonetype}}); |
||||
window.setTimeout(() => { |
||||
if (array.length > 0) { |
||||
this.router.navigate( |
||||
["/statisticanalysis/statePageOne/time"], |
||||
{ |
||||
queryParams: { |
||||
level: params.name, |
||||
type: params.data.type, |
||||
tid: "pieone", |
||||
pieonetype: this.pieonetype, |
||||
}, |
||||
} |
||||
); |
||||
} else { |
||||
this.router.navigate(["/statisticanalysis/AllPlan"], { |
||||
queryParams: { |
||||
xname: params.name, |
||||
name: params.name, |
||||
id: null, |
||||
type: params.data.type, |
||||
tid: "pieone", |
||||
pieonetype: this.pieonetype, |
||||
}, |
||||
}); |
||||
} |
||||
}) |
||||
}); |
||||
}); |
||||
|
||||
} |
||||
else if(this.echartsData.level=='3'){ |
||||
} else if (this.echartsData.level == "3") { |
||||
//中队跳转
|
||||
this.router.navigate(['/statisticanalysis/AllPlan'],{queryParams:{'xname':params.name,'name':params.name,'id':null,'type':params.data.type,'tid':'pieone','pieonetype':this.pieonetype}}); |
||||
this.router.navigate(["/statisticanalysis/AllPlan"], { |
||||
queryParams: { |
||||
xname: params.name, |
||||
name: params.name, |
||||
id: null, |
||||
type: params.data.type, |
||||
tid: "pieone", |
||||
pieonetype: this.pieonetype, |
||||
}, |
||||
}); |
||||
} |
||||
} |
||||
} |
||||
}else{ |
||||
for(var i=0;i<this.tabledata[0].planTypeStatistics.planTypes.length;i++){ |
||||
if(this.tabledata[0].planTypeStatistics.planTypes[i].planTypeName==params.data.planStatusName){ |
||||
if((this.echartsData.level=='0'||this.echartsData.level=='1'||this.echartsData.level=='2')&&this.tabledata[0].planCategoryStatistics.planCategories[i].organizations.length>0){ |
||||
this.tabledata[0].planTypeStatistics.planTypes[i].organizations.forEach((element,index,array) => { |
||||
if(array[index].organizationId==this.orid){ |
||||
array.splice(index,1) |
||||
} else { |
||||
for ( |
||||
var i = 0; |
||||
i < this.tabledata[0].planTypeStatistics.planTypes.length; |
||||
i++ |
||||
) { |
||||
if ( |
||||
this.tabledata[0].planTypeStatistics.planTypes[i].planTypeName == |
||||
params.data.planStatusName |
||||
) { |
||||
if ( |
||||
(this.echartsData.level == "0" || |
||||
this.echartsData.level == "1" || |
||||
this.echartsData.level == "2") && |
||||
this.tabledata[0].planCategoryStatistics.planCategories[i] |
||||
.organizations.length > 0 |
||||
) { |
||||
this.tabledata[0].planTypeStatistics.planTypes[ |
||||
i |
||||
].organizations.forEach((element, index, array) => { |
||||
if (array[index].organizationId == this.orid) { |
||||
array.splice(index, 1); |
||||
} |
||||
window.setTimeout(()=>{ |
||||
if(array.length>0){ |
||||
this.router.navigate(['/statisticanalysis/statePageOne/time'],{queryParams:{'level':params.name,'type':params.data.type,'tid':'pieone','pieonetype':this.pieonetype}}); |
||||
} |
||||
else{ |
||||
this.router.navigate(['/statisticanalysis/AllPlan'],{queryParams:{'xname':params.name,'name':params.name,'id':null,'type':params.data.type,'tid':'pieone','pieonetype':this.pieonetype}}); |
||||
window.setTimeout(() => { |
||||
if (array.length > 0) { |
||||
this.router.navigate( |
||||
["/statisticanalysis/statePageOne/time"], |
||||
{ |
||||
queryParams: { |
||||
level: params.name, |
||||
type: params.data.type, |
||||
tid: "pieone", |
||||
pieonetype: this.pieonetype, |
||||
}, |
||||
} |
||||
); |
||||
} else { |
||||
this.router.navigate(["/statisticanalysis/AllPlan"], { |
||||
queryParams: { |
||||
xname: params.name, |
||||
name: params.name, |
||||
id: null, |
||||
type: params.data.type, |
||||
tid: "pieone", |
||||
pieonetype: this.pieonetype, |
||||
}, |
||||
}); |
||||
} |
||||
}) |
||||
}); |
||||
}); |
||||
|
||||
} |
||||
else if(this.echartsData.level=='3'){ |
||||
} else if (this.echartsData.level == "3") { |
||||
//中队跳转
|
||||
this.router.navigate(['/statisticanalysis/AllPlan'],{queryParams:{'xname':params.name,'name':params.name,'id':null,'type':params.data.type,'tid':'pieone','pieonetype':this.pieonetype}}); |
||||
this.router.navigate(["/statisticanalysis/AllPlan"], { |
||||
queryParams: { |
||||
xname: params.name, |
||||
name: params.name, |
||||
id: null, |
||||
type: params.data.type, |
||||
tid: "pieone", |
||||
pieonetype: this.pieonetype, |
||||
}, |
||||
}); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
}else{ |
||||
for(var i=0;i<this.tabledata[0].planStatusStatistics.planStatuses.length;i++){ |
||||
if(this.tabledata[0].planStatusStatistics.planStatuses[i].planStatusName==params.data.planStatusName){ |
||||
if((this.echartsData.level=='0'||this.echartsData.level=='1'||this.echartsData.level=='2')&&this.tabledata[0].planStatusStatistics.planStatuses[i].organizations.length>0){ |
||||
this.tabledata[0].planStatusStatistics.planStatuses[i].organizations.forEach((element,index,array) => { |
||||
if(array[index].organizationId==this.orid){ |
||||
array.splice(index,1) |
||||
} else { |
||||
for ( |
||||
var i = 0; |
||||
i < this.tabledata[0].planStatusStatistics.planStatuses.length; |
||||
i++ |
||||
) { |
||||
if ( |
||||
this.tabledata[0].planStatusStatistics.planStatuses[i] |
||||
.planStatusName == params.data.planStatusName |
||||
) { |
||||
if ( |
||||
(this.echartsData.level == "0" || |
||||
this.echartsData.level == "1" || |
||||
this.echartsData.level == "2") && |
||||
this.tabledata[0].planStatusStatistics.planStatuses[i] |
||||
.organizations.length > 0 |
||||
) { |
||||
this.tabledata[0].planStatusStatistics.planStatuses[ |
||||
i |
||||
].organizations.forEach((element, index, array) => { |
||||
if (array[index].organizationId == this.orid) { |
||||
array.splice(index, 1); |
||||
} |
||||
window.setTimeout(()=>{ |
||||
if(array.length>0){ |
||||
this.router.navigate(['/statisticanalysis/statePageOne/time'],{queryParams:{'level':params.name,'type':params.data.type,'tid':'pietwo'}}); |
||||
} |
||||
else{ |
||||
this.router.navigate(['/statisticanalysis/AllPlan'],{queryParams:{'xname':params.name,'name':params.name,'id':null,'type':params.data.type,'tid':'pietwo'}}); |
||||
window.setTimeout(() => { |
||||
if (array.length > 0) { |
||||
this.router.navigate( |
||||
["/statisticanalysis/statePageOne/time"], |
||||
{ |
||||
queryParams: { |
||||
level: params.name, |
||||
type: params.data.type, |
||||
tid: "pietwo", |
||||
}, |
||||
} |
||||
); |
||||
} else { |
||||
this.router.navigate(["/statisticanalysis/AllPlan"], { |
||||
queryParams: { |
||||
xname: params.name, |
||||
name: params.name, |
||||
id: null, |
||||
type: params.data.type, |
||||
tid: "pietwo", |
||||
}, |
||||
}); |
||||
} |
||||
}) |
||||
}); |
||||
}); |
||||
|
||||
} |
||||
else if(this.echartsData.level=='3'){ |
||||
} else if (this.echartsData.level == "3") { |
||||
//中队跳转
|
||||
this.router.navigate(['/statisticanalysis/AllPlan'],{queryParams:{'xname':params.name,'name':params.name,'id':null,'type':params.data.type,'tid':'pietwo'}}); |
||||
this.router.navigate(["/statisticanalysis/AllPlan"], { |
||||
queryParams: { |
||||
xname: params.name, |
||||
name: params.name, |
||||
id: null, |
||||
type: params.data.type, |
||||
tid: "pietwo", |
||||
}, |
||||
}); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
|
||||
|
||||
}); |
||||
this.indexBzt.setOption(options); |
||||
} |
||||
/** |
||||
* @name: 表格提示框封装 |
||||
* @test: test font |
||||
* @msg:
|
||||
* @msg: |
||||
* @param {string(表头)} |
||||
* @return {type}
|
||||
* @return {type} |
||||
*/ |
||||
biaogeTishi(biaotou:string){ |
||||
var shuju='[{"name":"浦东支队","number":"156","zhanbi":"3%"},{"name":"黄浦支队","number":"144","zhanbi":"2.8%"},' |
||||
shuju+='{"name":"徐汇支队","number":"133","zhanbi":"2.1%"},{"name":"长宁支队","number":"122","zhanbi":"1.6%"},' |
||||
shuju+='{"name":"静安支队","number":"120","zhanbi":"1.3%"},{"name":"普陀支队","number":"100","zhanbi":"1.1%"},' |
||||
shuju+='{"name":"虹口支队","number":"95","zhanbi":"1%"},{"name":"杨浦支队","number":"90","zhanbi":"0.9%"},' |
||||
shuju+='{"name":"闵行支队","number":"88","zhanbi":"0.8%"},{"name":"宝山支队","number":"83","zhanbi":"0.7%"},' |
||||
shuju+='{"name":"徐汇支队","number":"133","zhanbi":"2.1%"},{"name":"长宁支队","number":"122","zhanbi":"1.6%"},' |
||||
shuju+='{"name":"嘉定支队","number":"78","zhanbi":"0.6%"},{"name":"松江支队","number":"75","zhanbi":"0.5%"},' |
||||
shuju+='{"name":"金山支队","number":"65","zhanbi":"0.4%"},{"name":"崇明支队","number":"55","zhanbi":"0.3%"}]' |
||||
var jsonObj = JSON.parse(shuju); |
||||
var res = '<div class="tishi" style=" backgroundColor:rgba(255,255,255,1);width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span style="color:#000000;font-size:30px;text-align: center;display:block;">'+biaotou+'</span></div>' |
||||
res+='</br><div style="width:300px;height:100%;padding:0 20px 15px 20px"><table style="width:300px; background:#FFFFFF; color:#000000;border-collapse:collapse;"cellspacing="0"; >'; |
||||
res+='<thead><tr>'; |
||||
res+='<td style="text-align:center;width:30%;border:1px solid #000000">名称</td>'; |
||||
res+='<td style="text-align:center;width:30%;border:1px solid #000000">数量</td>' |
||||
res+='<td style="text-align:center;width:30%;border:1px solid #000000">总占比</td>' |
||||
res+='</tr></thead>' |
||||
res+='<tbody>'; |
||||
for(var i=0;i<jsonObj.length;i++){ |
||||
res+='<tr>' |
||||
res+='<td style="text-align:center;border:1px solid #000000">'+jsonObj[i].name+'</td>' |
||||
res+='<td style="text-align:center;border:1px solid #000000">'+jsonObj[i].number+'</td>' |
||||
res+='<td style="text-align:center;border:1px solid #000000">'+jsonObj[i].zhanbi+'</td></tr>' |
||||
} |
||||
|
||||
res+='</tbody>' |
||||
res+='<tfoot><td style="text-align:center;border:1px solid #000000">总计</td><td style="text-align:center;border:1px solid #000000">1356</td><td style="text-align:center;border:1px solid #000000">19%</td></tfoot>' |
||||
res+='</table></div></div>' |
||||
return res |
||||
} |
||||
biaogeTishi(biaotou: string) { |
||||
var shuju = |
||||
'[{"name":"浦东支队","number":"156","zhanbi":"3%"},{"name":"黄浦支队","number":"144","zhanbi":"2.8%"},'; |
||||
shuju += |
||||
'{"name":"徐汇支队","number":"133","zhanbi":"2.1%"},{"name":"长宁支队","number":"122","zhanbi":"1.6%"},'; |
||||
shuju += |
||||
'{"name":"静安支队","number":"120","zhanbi":"1.3%"},{"name":"普陀支队","number":"100","zhanbi":"1.1%"},'; |
||||
shuju += |
||||
'{"name":"虹口支队","number":"95","zhanbi":"1%"},{"name":"杨浦支队","number":"90","zhanbi":"0.9%"},'; |
||||
shuju += |
||||
'{"name":"闵行支队","number":"88","zhanbi":"0.8%"},{"name":"宝山支队","number":"83","zhanbi":"0.7%"},'; |
||||
shuju += |
||||
'{"name":"徐汇支队","number":"133","zhanbi":"2.1%"},{"name":"长宁支队","number":"122","zhanbi":"1.6%"},'; |
||||
shuju += |
||||
'{"name":"嘉定支队","number":"78","zhanbi":"0.6%"},{"name":"松江支队","number":"75","zhanbi":"0.5%"},'; |
||||
shuju += |
||||
'{"name":"金山支队","number":"65","zhanbi":"0.4%"},{"name":"崇明支队","number":"55","zhanbi":"0.3%"}]'; |
||||
var jsonObj = JSON.parse(shuju); |
||||
var res = |
||||
'<div class="tishi" style=" backgroundColor:rgba(255,255,255,1);width:100%;height:100%;"><div style="padding:10px 0 5px 0"><span style="color:#000000;font-size:30px;text-align: center;display:block;">' + |
||||
biaotou + |
||||
"</span></div>"; |
||||
res += |
||||
'</br><div style="width:300px;height:100%;padding:0 20px 15px 20px"><table style="width:300px; background:#FFFFFF; color:#000000;border-collapse:collapse;"cellspacing="0"; >'; |
||||
res += "<thead><tr>"; |
||||
res += |
||||
'<td style="text-align:center;width:30%;border:1px solid #000000">名称</td>'; |
||||
res += |
||||
'<td style="text-align:center;width:30%;border:1px solid #000000">数量</td>'; |
||||
res += |
||||
'<td style="text-align:center;width:30%;border:1px solid #000000">总占比</td>'; |
||||
res += "</tr></thead>"; |
||||
res += "<tbody>"; |
||||
for (var i = 0; i < jsonObj.length; i++) { |
||||
res += "<tr>"; |
||||
res += |
||||
'<td style="text-align:center;border:1px solid #000000">' + |
||||
jsonObj[i].name + |
||||
"</td>"; |
||||
res += |
||||
'<td style="text-align:center;border:1px solid #000000">' + |
||||
jsonObj[i].number + |
||||
"</td>"; |
||||
res += |
||||
'<td style="text-align:center;border:1px solid #000000">' + |
||||
jsonObj[i].zhanbi + |
||||
"</td></tr>"; |
||||
} |
||||
|
||||
res += "</tbody>"; |
||||
res += |
||||
'<tfoot><td style="text-align:center;border:1px solid #000000">总计</td><td style="text-align:center;border:1px solid #000000">1356</td><td style="text-align:center;border:1px solid #000000">19%</td></tfoot>'; |
||||
res += "</table></div></div>"; |
||||
return res; |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue