|
|
|
@ -4,7 +4,7 @@
|
|
|
|
|
* @Author: sueRimn |
|
|
|
|
* @Date: 2021-05-19 15:50:20 |
|
|
|
|
* @LastEditors: sueRimn |
|
|
|
|
* @LastEditTime: 2021-05-26 16:58:15 |
|
|
|
|
* @LastEditTime: 2021-05-28 17:11:44 |
|
|
|
|
*/ |
|
|
|
|
import { Component, Inject, OnInit } from '@angular/core'; |
|
|
|
|
import { HttpClient } from '@angular/common/http' |
|
|
|
@ -23,11 +23,12 @@ export class PlanTemplateComponent implements OnInit {
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//获取左侧单位信息
|
|
|
|
|
groupPanle=true//分组展开
|
|
|
|
|
attPanle=true |
|
|
|
|
//获取所有单位信息
|
|
|
|
|
newleftTabledata=[ |
|
|
|
|
{name:"333",level:'Ⅲ级',unitid: "5e7c49e861550e2754d461ce",group:[]},//{groupName: "单位概况"}
|
|
|
|
|
{name:"444",level:'Ⅳ级',unitid: "5e7c49e861550e2754d461ce",group:[]} |
|
|
|
|
{name:"333",level:3,basicCategoryId:"5e7c49e861550e2754d461ce",unitid: "5e7c8ffba3050b1a840ed4b6",unitname:'高层建筑',group:[]},//{groupName: "单位概况"}
|
|
|
|
|
{name:"444",level:5,basicCategoryId:"60127efe2757e904e5721d83",unitid: "5e7c9018a3050b1a840ed4b7",unitname:'地下建筑',group:[]} |
|
|
|
|
] |
|
|
|
|
group=[] |
|
|
|
|
getLeftdata(){ |
|
|
|
@ -57,6 +58,7 @@ export class PlanTemplateComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//console.log(this.newleftTabledata)
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
//删除预案
|
|
|
|
@ -71,26 +73,31 @@ export class PlanTemplateComponent implements OnInit {
|
|
|
|
|
upPlan(item,i){ |
|
|
|
|
const dialogRef = this.dialog.open(upPlanname, {//调用open方法打开对话框并且携带参数过去
|
|
|
|
|
width: '340px', |
|
|
|
|
height:'330px', |
|
|
|
|
height:'380px', |
|
|
|
|
disableClose:true, |
|
|
|
|
data:{item:item} |
|
|
|
|
data:{item:item,plandata:this.newleftTabledata} |
|
|
|
|
}); |
|
|
|
|
dialogRef.afterClosed().subscribe(result => { |
|
|
|
|
console.log(result) |
|
|
|
|
if(result!=undefined){ |
|
|
|
|
this.newleftTabledata[i].name=result.name |
|
|
|
|
this.newleftTabledata[i].level=result.level |
|
|
|
|
this.newleftTabledata[i].unitid=result.unitid |
|
|
|
|
this.newleftTabledata[i].unitname=result.unitname |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
//左侧预案模板点击事件
|
|
|
|
|
planName |
|
|
|
|
unitName |
|
|
|
|
leftclicki=-1//点了第几个模板
|
|
|
|
|
planClick(item){ |
|
|
|
|
//console.log(item)
|
|
|
|
|
this.planName=item.name |
|
|
|
|
this.unitName=item.unitname |
|
|
|
|
this.newleftTabledata.forEach((value,index,array)=>{ |
|
|
|
|
if(array[index].name==this.planName){ |
|
|
|
|
if(array[index].unitname==this.unitName){ |
|
|
|
|
this.group=array[index].group |
|
|
|
|
this.leftclicki=index |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
@ -159,6 +166,7 @@ export class PlanTemplateComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
//新增属性
|
|
|
|
|
addAttribute(groupName){ |
|
|
|
|
this.groupPanle=true |
|
|
|
|
if(groupName=='单位概况'){ |
|
|
|
|
const dialogRef = this.dialog.open(adddwsurvey, {//调用open方法打开对话框并且携带参数过去
|
|
|
|
|
width: '240px', |
|
|
|
@ -180,30 +188,71 @@ export class PlanTemplateComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//删除具体属性
|
|
|
|
|
delAttribute(surveyName){ |
|
|
|
|
|
|
|
|
|
delAttribute(groupName,surveyName){ |
|
|
|
|
let isTrue = confirm('您确定要删除吗') |
|
|
|
|
if(isTrue){ |
|
|
|
|
this.group.forEach((value,index,array)=>{ |
|
|
|
|
if (array[index].groupName==groupName) { |
|
|
|
|
array[index].attribute.forEach((element,i) => { |
|
|
|
|
if(element.surveyName==surveyName){ |
|
|
|
|
array[index].attribute[i].completed=false |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
console.log(this.newleftTabledata) |
|
|
|
|
} |
|
|
|
|
//新增属性信息
|
|
|
|
|
addAttInfo(){ |
|
|
|
|
danweiInfTable=[] |
|
|
|
|
addAttInfo(surveyName){ |
|
|
|
|
this.attPanle=true |
|
|
|
|
const dialogRef = this.dialog.open(addattinf, {//调用open方法打开对话框并且携带参数过去
|
|
|
|
|
width: '240px', |
|
|
|
|
height:'400px', |
|
|
|
|
disableClose:true, |
|
|
|
|
data:this.group |
|
|
|
|
data:{group:this.group,surveyName:surveyName} |
|
|
|
|
}); |
|
|
|
|
dialogRef.afterClosed().subscribe(result => { |
|
|
|
|
console.log(result) |
|
|
|
|
//console.log(result)
|
|
|
|
|
if(result!=undefined){ |
|
|
|
|
/* this.group.forEach((value,index,array)=>{ |
|
|
|
|
if(array[index].groupName=='单位概况'){ |
|
|
|
|
array[index].attribute=result |
|
|
|
|
} |
|
|
|
|
}) */ |
|
|
|
|
this.newleftTabledata[this,this.leftclicki].group.forEach((value,index,array)=>{ |
|
|
|
|
if(value.groupName=='单位概况'){ |
|
|
|
|
array[index].attribute.forEach((element,i,attary) => { |
|
|
|
|
if(element.surveyName==surveyName){ |
|
|
|
|
attary[i].attinf=result |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
this.group=this.newleftTabledata[this,this.leftclicki].group |
|
|
|
|
//console.log(this.danweiInfTable)
|
|
|
|
|
} |
|
|
|
|
console.log(this.newleftTabledata) |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
//保存
|
|
|
|
|
save(){ |
|
|
|
|
const config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000 |
|
|
|
|
let body={ |
|
|
|
|
basicCategoryId:this.newleftTabledata[this.leftclicki].basicCategoryId, |
|
|
|
|
buildingTypeId:this.newleftTabledata[this.leftclicki].unitid, |
|
|
|
|
planCategory:Number(this.newleftTabledata[this.leftclicki].level), |
|
|
|
|
data:{} |
|
|
|
|
} |
|
|
|
|
this.http.post("/api/PlanTemplate",body).subscribe((data:any)=>{ |
|
|
|
|
this.snackBar.open('创建成功!','确定',config); |
|
|
|
|
console.log(data)
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
//单位基本信息和建筑信息表格
|
|
|
|
|
displayedColumns: string[] = ['name','level','default','must', 'danwei','operation']; |
|
|
|
|
|
|
|
|
@ -216,18 +265,20 @@ export class PlanTemplateComponent implements OnInit {
|
|
|
|
|
}) |
|
|
|
|
export class addPlanname{ |
|
|
|
|
constructor(private http: HttpClient,public dialogRef: MatDialogRef<addPlanname>,@Inject(MAT_DIALOG_DATA) public data,public snackBar: MatSnackBar) {} |
|
|
|
|
unitname//预案名称
|
|
|
|
|
planname//预案名称
|
|
|
|
|
level//预案级别
|
|
|
|
|
unittype//单位类型
|
|
|
|
|
unitid//单位类型id
|
|
|
|
|
unitname//单位类型名称
|
|
|
|
|
allunittype//所有单位信息
|
|
|
|
|
basicCategoryId |
|
|
|
|
ngOnInit(): void { |
|
|
|
|
this.getUnittype() |
|
|
|
|
} |
|
|
|
|
//获取单位类型
|
|
|
|
|
getUnittype(){ |
|
|
|
|
this.http.get("/api/BasicCategories").subscribe((data:any)=>{ |
|
|
|
|
this.http.get("/api/BuildingTypes").subscribe((data:any)=>{ |
|
|
|
|
this.allunittype=data |
|
|
|
|
//console.log(data)
|
|
|
|
|
console.log(this.allunittype) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
//取消按钮
|
|
|
|
@ -235,30 +286,40 @@ export class addPlanname{
|
|
|
|
|
this.dialogRef.close(); |
|
|
|
|
} |
|
|
|
|
newplan(){ |
|
|
|
|
this.unitname=document.getElementById('unit').innerText |
|
|
|
|
const config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000 |
|
|
|
|
if(this.unitname==undefined||this.unitname==''){ |
|
|
|
|
if(this.planname==undefined||this.planname==''){ |
|
|
|
|
this.snackBar.open('请输入预案名称!','确定',config); |
|
|
|
|
} |
|
|
|
|
else if(this.level==undefined||this.level==''){ |
|
|
|
|
this.snackBar.open('请输入预案级别!','确定',config); |
|
|
|
|
}else if(this.unittype==undefined||this.unittype==''){ |
|
|
|
|
}else if(this.unitid==undefined||this.unitid==''){ |
|
|
|
|
this.snackBar.open('请选择单位类型!','确定',config); |
|
|
|
|
} |
|
|
|
|
else{ |
|
|
|
|
for(var i=0;i<this.data.plandata.length;i++){ |
|
|
|
|
if(this.data.plandata[i].name==this.unitname){ |
|
|
|
|
this.snackBar.open('预案名称重复,请重新建立预案模板!','确定',config); |
|
|
|
|
this.unitname=='' |
|
|
|
|
if(this.data.plandata[i].unitid==this.unitid&&this.data.plandata[i].level==this.level){ |
|
|
|
|
this.snackBar.open('预案模板重复,请重新建立预案模板!','确定',config); |
|
|
|
|
this.planname=='' |
|
|
|
|
this.level=='' |
|
|
|
|
this.unittype=='' |
|
|
|
|
this.unitid=='' |
|
|
|
|
this.unitname=='' |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
this.allunittype.forEach(element => { |
|
|
|
|
if(element.id==this.unitid){ |
|
|
|
|
this.basicCategoryId=element.basicCategoryId |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
let planData={ |
|
|
|
|
name:this.unitname, |
|
|
|
|
name:this.planname, |
|
|
|
|
level:this.level, |
|
|
|
|
unitid:this.unittype, |
|
|
|
|
unitid:this.unitid, |
|
|
|
|
unitname:this.unitname, |
|
|
|
|
basicCategoryId:this.basicCategoryId, |
|
|
|
|
group:[] |
|
|
|
|
} |
|
|
|
|
this.dialogRef.close(planData) |
|
|
|
@ -273,11 +334,20 @@ export class addPlanname{
|
|
|
|
|
}) |
|
|
|
|
export class upPlanname{ |
|
|
|
|
constructor(private http: HttpClient,public dialogRef: MatDialogRef<addPlanname>,@Inject(MAT_DIALOG_DATA) public data,public snackBar: MatSnackBar) {} |
|
|
|
|
unitname=this.data.item.name//预案名称
|
|
|
|
|
name=this.data.item.name//预案名称
|
|
|
|
|
level=this.data.item.level//预案级别
|
|
|
|
|
unitName=this.data.item.unitname//单位类型
|
|
|
|
|
unitid=this.data.item.unitid |
|
|
|
|
allunittype |
|
|
|
|
ngOnInit(): void{ |
|
|
|
|
/* this.unitname=this.data.name |
|
|
|
|
this.level=this.data.level */ |
|
|
|
|
this.getUnittype() |
|
|
|
|
} |
|
|
|
|
//获取单位类型
|
|
|
|
|
getUnittype(){ |
|
|
|
|
this.http.get("/api/BuildingTypes").subscribe((data:any)=>{ |
|
|
|
|
this.allunittype=data |
|
|
|
|
//console.log(this.allunittype)
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
//取消按钮
|
|
|
|
|
close(){ |
|
|
|
@ -285,18 +355,31 @@ export class upPlanname{
|
|
|
|
|
} |
|
|
|
|
//确定按钮
|
|
|
|
|
upplan(){ |
|
|
|
|
this.unitName=document.getElementById('unit').innerText |
|
|
|
|
const config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000 |
|
|
|
|
if(this.unitname==undefined||this.unitname==''){ |
|
|
|
|
if(this.name==undefined||this.name==''){ |
|
|
|
|
this.snackBar.open('请输入预案名称!','确定',config); |
|
|
|
|
} |
|
|
|
|
else if(this.level==undefined||this.level==''){ |
|
|
|
|
this.snackBar.open('请输入预案级别!','确定',config); |
|
|
|
|
}else{ |
|
|
|
|
for(var i=0;i<this.data.plandata.length;i++){ |
|
|
|
|
if(this.data.plandata[i].unitid==this.unitid&&this.data.plandata[i].level==this.level){ |
|
|
|
|
this.snackBar.open('预案模板重复,请重新建立预案模板!','确定',config); |
|
|
|
|
this.name=='' |
|
|
|
|
this.level=='' |
|
|
|
|
this.unitid=='' |
|
|
|
|
this.unitName=='' |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
let planData={ |
|
|
|
|
name:this.unitname, |
|
|
|
|
level:this.level |
|
|
|
|
name:this.name, |
|
|
|
|
level:this.level, |
|
|
|
|
unitid:this.unitid, |
|
|
|
|
unitname:this.unitName |
|
|
|
|
} |
|
|
|
|
this.dialogRef.close(planData) |
|
|
|
|
} |
|
|
|
@ -383,7 +466,7 @@ export class adddwsurvey{
|
|
|
|
|
{surveyName:'功能分区',completed:false},{surveyName:'行车路线',completed:false},{surveyName:'千米水源',completed:false},{surveyName:'实景图',completed:false} |
|
|
|
|
] |
|
|
|
|
ngOnInit(): void{ |
|
|
|
|
console.log(this.data) |
|
|
|
|
//console.log(this.data)
|
|
|
|
|
this.data.forEach(element => { |
|
|
|
|
if(element.groupName=='单位概况'&&element.attribute!=undefined){ |
|
|
|
|
this.addwsurvey=element.attribute |
|
|
|
@ -399,7 +482,7 @@ defineClick(){
|
|
|
|
|
this.dialogRef.close(this.addwsurvey) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//编辑属性信息弹窗
|
|
|
|
|
//编辑单位概况单位基本信息属性信息弹窗
|
|
|
|
|
@Component({ |
|
|
|
|
selector: 'addattinf', |
|
|
|
|
templateUrl: './addattinf.html', |
|
|
|
@ -416,6 +499,18 @@ export class addattinf{
|
|
|
|
|
{addAttinfName:'单位地址',completed:false,level:'单行文本',default:'-',must:'是',danwei:'-'}, |
|
|
|
|
{addAttinfName:'单位照片',completed:false,level:'单行文本',default:'-',must:'是',danwei:'-'} |
|
|
|
|
] |
|
|
|
|
ngOnInit(): void{ |
|
|
|
|
//console.log(this.data)
|
|
|
|
|
this.data.group.forEach(element => { |
|
|
|
|
if(element.groupName=='单位概况'&&element.attribute!=undefined){ |
|
|
|
|
element.attribute.forEach(value => { |
|
|
|
|
if(this.data.surveyName=='单位基本信息'&&value.attinf!=undefined){ |
|
|
|
|
this.addAttinf=value.attinf |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
//取消按钮
|
|
|
|
|
close(){ |
|
|
|
|
this.dialogRef.close(); |
|
|
|
|