|
|
|
@ -17,8 +17,8 @@ export class CreateTestScoreComponent implements OnInit {
|
|
|
|
|
this.selectedTab = index |
|
|
|
|
} |
|
|
|
|
ngOnInit(): void { |
|
|
|
|
console.log(12345,) |
|
|
|
|
this.getUnitData() |
|
|
|
|
this.getAround() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//模拟单位数据
|
|
|
|
@ -91,7 +91,7 @@ export class CreateTestScoreComponent implements OnInit {
|
|
|
|
|
element.basicInfoItemScore = 0 |
|
|
|
|
|
|
|
|
|
this.http.get(`/api/Companies/${element.id}`).subscribe((data:any)=>{ |
|
|
|
|
console.log('单位信息',index,data) |
|
|
|
|
// console.log('单位信息',index,data)
|
|
|
|
|
let unitData = { |
|
|
|
|
name: '单位信息', |
|
|
|
|
type:'基本信息', |
|
|
|
@ -137,7 +137,7 @@ export class CreateTestScoreComponent implements OnInit {
|
|
|
|
|
buildingType:data[i].buildingTypes[0].id |
|
|
|
|
} |
|
|
|
|
}).subscribe((buildingsData:any)=>{ |
|
|
|
|
console.log(1234,buildingsData) |
|
|
|
|
// console.log(1234,buildingsData)
|
|
|
|
|
buildingsData.name = data[i].name |
|
|
|
|
buildingsData.buildingType = data[i].buildingTypes[0].name |
|
|
|
|
|
|
|
|
@ -173,7 +173,6 @@ export class CreateTestScoreComponent implements OnInit {
|
|
|
|
|
}) |
|
|
|
|
y.tabledata = dest |
|
|
|
|
tabledata = dest |
|
|
|
|
console.log('pppp',y) |
|
|
|
|
y.tabledata[0].data.forEach((x,key) => { |
|
|
|
|
if(x.propertyValue){ |
|
|
|
|
x.key = (Math.random()*10000000).toString(16).substr(0,4)+(new Date()).getTime()+Math.random().toString().substr(2,5) |
|
|
|
@ -192,36 +191,122 @@ export class CreateTestScoreComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
element.basicInfoNodes.push({ |
|
|
|
|
name:y.name != '基本信息' ? buildingsData.name + '-' + y.name : buildingsData.name , |
|
|
|
|
type:'基本信息', |
|
|
|
|
expanded: false, |
|
|
|
|
key:(Math.random()*10000000).toString(16).substr(0,4)+(new Date()).getTime()+Math.random().toString().substr(2,5), |
|
|
|
|
children:propertyInfosArr, |
|
|
|
|
tabledata:tabledata ? tabledata : null |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
element.basicInfoNodes = [...element.basicInfoNodes] |
|
|
|
|
if(propertyInfosArr.length != 0){ |
|
|
|
|
element.basicInfoNodes.push({ |
|
|
|
|
name:y.name != '基本信息' ? buildingsData.name + '-' + y.name : buildingsData.name , |
|
|
|
|
type:'基本信息', |
|
|
|
|
expanded: false, |
|
|
|
|
key:(Math.random()*10000000).toString(16).substr(0,4)+(new Date()).getTime()+Math.random().toString().substr(2,5), |
|
|
|
|
children:propertyInfosArr, |
|
|
|
|
tabledata:tabledata ? tabledata : null |
|
|
|
|
}) |
|
|
|
|
element.basicInfoNodes = [...element.basicInfoNodes] |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
resolve(i) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
console.log(987,this.unitId) |
|
|
|
|
// console.log(987,this.unitId)
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
//获取四周毗邻数据
|
|
|
|
|
getAround(){ |
|
|
|
|
this.unitId.forEach((element,index) => { |
|
|
|
|
element.aroundScore = 0 |
|
|
|
|
element.aroundItemScore = 0 |
|
|
|
|
element.aroundNodes = [] |
|
|
|
|
//获得当前单位的单位毗邻
|
|
|
|
|
let id = {companyId:element.id} |
|
|
|
|
this.http.get('/api/CompanyAdjoins',{params:id}).subscribe((data:any)=>{ |
|
|
|
|
// console.log(index+'四周毗邻',data)
|
|
|
|
|
data.forEach(item => { |
|
|
|
|
item.direction == 0 ? item.title = '东方向' : null |
|
|
|
|
item.direction == 1 ? item.title = '西方向' : null |
|
|
|
|
item.direction == 2 ? item.title = '南方向' : null |
|
|
|
|
item.direction == 3 ? item.title = '北方向' : null |
|
|
|
|
item.direction == 4 ? item.title = '东南方向' : null |
|
|
|
|
item.direction == 5 ? item.title = '西南方向' : null |
|
|
|
|
item.direction == 6 ? item.title = '东北方向' : null |
|
|
|
|
item.direction == 7 ? item.title = '西北方向' : null |
|
|
|
|
item.isLeaf = true |
|
|
|
|
}) |
|
|
|
|
//如果存在单位毗邻
|
|
|
|
|
if(data.length != 0){ |
|
|
|
|
this.unitId[index].aroundNodes.push({ |
|
|
|
|
name: '单位毗邻', |
|
|
|
|
key: (Math.random()*10000000).toString(16).substr(0,4)+(new Date()).getTime()+Math.random().toString().substr(2,5), |
|
|
|
|
expanded: false, |
|
|
|
|
type:'四周毗邻', |
|
|
|
|
children: data |
|
|
|
|
}) |
|
|
|
|
element.aroundNodes = [...element.aroundNodes] |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
//获得当前单位的建筑毗邻
|
|
|
|
|
this.http.get('/api/Buildings',{params:id}).subscribe((data:any)=>{ |
|
|
|
|
if (data.length) {
|
|
|
|
|
getAllArchitecture(data) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
let that = this |
|
|
|
|
async function getAllArchitecture(buildongsdata){ |
|
|
|
|
for (let i = 0, length = buildongsdata.length; i < length; i++){ |
|
|
|
|
let id = {buildingId:buildongsdata[i].id} |
|
|
|
|
let result = await new Promise((resolve, reject) => { |
|
|
|
|
that.http.get('/api/BuildingAdjoins',{params:id}).subscribe((data:any)=>{ |
|
|
|
|
data.forEach(item => { |
|
|
|
|
item.direction == 0 ? item.title = '东方向' : null |
|
|
|
|
item.direction == 1 ? item.title = '西方向' : null |
|
|
|
|
item.direction == 2 ? item.title = '南方向' : null |
|
|
|
|
item.direction == 3 ? item.title = '北方向' : null |
|
|
|
|
item.direction == 4 ? item.title = '东南方向' : null |
|
|
|
|
item.direction == 5 ? item.title = '西南方向' : null |
|
|
|
|
item.direction == 6 ? item.title = '东北方向' : null |
|
|
|
|
item.direction == 7 ? item.title = '西北方向' : null |
|
|
|
|
item.isLeaf = true |
|
|
|
|
}) |
|
|
|
|
if(data.length != 0){ |
|
|
|
|
that.unitId[index].aroundNodes.push({ |
|
|
|
|
name: buildongsdata[i].name, |
|
|
|
|
key: (Math.random()*10000000).toString(16).substr(0,4)+(new Date()).getTime()+Math.random().toString().substr(2,5), |
|
|
|
|
expanded: false, |
|
|
|
|
type:'四周毗邻', |
|
|
|
|
children: data |
|
|
|
|
}) |
|
|
|
|
element.aroundNodes = [...element.aroundNodes] |
|
|
|
|
} |
|
|
|
|
resolve('1') |
|
|
|
|
}) |
|
|
|
|
})
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//查看树节点
|
|
|
|
|
lookTreeNode(node){ |
|
|
|
|
console.log(node.origin) |
|
|
|
|
// console.log(node.origin)
|
|
|
|
|
const dialogRef = this.dialog.open(LookTreeNodeDialog, { |
|
|
|
|
// width: '380px',
|
|
|
|
|
// height: '136px',
|
|
|
|
|
id:'lookTreeNode', |
|
|
|
|
data: node.origin |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
dialogRef.afterClosed().subscribe(result => { |
|
|
|
|
console.log('The dialog was closed'); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -283,7 +368,7 @@ export class CreateTestScoreComponent implements OnInit {
|
|
|
|
|
i.checked ? selectedNum.push(i) : '' |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
console.log(7894,selectedNum) |
|
|
|
|
// console.log(7894,selectedNum)
|
|
|
|
|
if(selectedNum.length != 0 ){ |
|
|
|
|
this.unitId[key].aroundScore ? this.unitId[key].aroundItemScore = this.unitId[key].aroundScore / selectedNum.length : null |
|
|
|
|
}else{ |
|
|
|
@ -429,3 +514,30 @@ export class AddPlanTwoDialog {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//查看答案
|
|
|
|
|
@Component({ |
|
|
|
|
selector: 'lookTreeNode-dialog', |
|
|
|
|
templateUrl: 'lookTreeNode.html', |
|
|
|
|
styleUrls: ['lookTreeNode.scss'] |
|
|
|
|
}) |
|
|
|
|
export class LookTreeNodeDialog { |
|
|
|
|
|
|
|
|
|
constructor(public dialog: MatDialog,public dialogRef: MatDialogRef<LookTreeNodeDialog>,@Inject(MAT_DIALOG_DATA) public data: any) {} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
console.log(this.data) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
onNoClick(): void { |
|
|
|
|
this.dialogRef.close(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//取消
|
|
|
|
|
close(){ |
|
|
|
|
this.dialogRef.close(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |