|
|
|
@ -91,7 +91,14 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
this.getallunittype() |
|
|
|
|
this.getorganization() |
|
|
|
|
this.getUnitAllBuildings()//获得单位下所有建筑
|
|
|
|
|
if (sessionStorage.getItem('isDefaultPassword') == 'true') { |
|
|
|
|
let dialogRef = this.dialog.open(ChangepasswordComponent2, |
|
|
|
|
{ width: '268px' }); |
|
|
|
|
|
|
|
|
|
dialogRef.afterClosed().subscribe((data) => { |
|
|
|
|
sessionStorage.setItem('isDefaultPassword', 'false') |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//获得单位下所有建筑
|
|
|
|
|
getUnitAllBuildings() { |
|
|
|
@ -120,16 +127,18 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
newPositionMarkerContent: any = |
|
|
|
|
'<div class="custom-content-marker">' + |
|
|
|
|
' <img src="/assets/images/newposition.png">' + |
|
|
|
|
' <img class="positionimg" src="/assets/images/newposition.png">' + |
|
|
|
|
' <div class="btnbox2"></div>' + |
|
|
|
|
'</div>' |
|
|
|
|
newPositionMarkerContentBtn: any = |
|
|
|
|
'<div class="custom-content-marker">' + |
|
|
|
|
' <img src="/assets/images/newposition.png">' + |
|
|
|
|
' <img class="positionimg" src="/assets/images/newposition.png">' + |
|
|
|
|
' <div class="btnbox"><img id="setPositionOk" src="/assets/images/ok.png"><span>|</span><img id="setPositionClose" src="/assets/images/close.png"></div>' + |
|
|
|
|
'</div>' |
|
|
|
|
oldPositionMarkerContent: any = |
|
|
|
|
'<div class="custom-content-marker">' + |
|
|
|
|
' <img src="/assets/images/oldposition.png">' + |
|
|
|
|
' <img class="positionimg" src="/assets/images/oldposition.png">' + |
|
|
|
|
' <div class="btnbox2"></div>' + |
|
|
|
|
'</div>' |
|
|
|
|
//初始化地图
|
|
|
|
|
searchTitle: any//搜索内容
|
|
|
|
@ -156,6 +165,9 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
this.map.on('complete', () => { |
|
|
|
|
this.isGisTopBox = true |
|
|
|
|
}); |
|
|
|
|
this.map.on('click', (e) => { |
|
|
|
|
console.log(e.lnglat) |
|
|
|
|
}); |
|
|
|
|
//输入提示
|
|
|
|
|
var autoOptions = { |
|
|
|
|
input: "tipinput" |
|
|
|
@ -164,8 +176,6 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
var auto = new AMap.AutoComplete(autoOptions); |
|
|
|
|
this.placeSearch = new AMap.PlaceSearch(); //构造地点查询类
|
|
|
|
|
auto.on("select", (e) => { |
|
|
|
|
// console.log(e)
|
|
|
|
|
// console.log( this.newPositionMarker)
|
|
|
|
|
this.newPositionMarker.setPosition([e.poi.location.lng, e.poi.location.lat]) |
|
|
|
|
this.markerPosition2 = { x: e.poi.location.lng, y: e.poi.location.lat } |
|
|
|
|
this.map.setCenter([e.poi.location.lng, e.poi.location.lat]); //设置地图中心点
|
|
|
|
@ -179,7 +189,7 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
this.oldPositionMarker = new AMap.Marker({ |
|
|
|
|
position: [this.unitinfo.location.x, this.unitinfo.location.y], |
|
|
|
|
content: this.newPositionMarkerContent, |
|
|
|
|
offset: new AMap.Pixel(-15, -18) |
|
|
|
|
offset: new AMap.Pixel(-0, -0) |
|
|
|
|
}) |
|
|
|
|
// 将 markers 添加到地图
|
|
|
|
|
this.map.add(this.oldPositionMarker); |
|
|
|
@ -195,7 +205,6 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
this.isGisTopBoxTwo = true |
|
|
|
|
if (this.isMapLabel) {//如果已经标注单位坐标
|
|
|
|
|
// console.log('已标注单位位置')
|
|
|
|
|
|
|
|
|
|
if (this.oldPositionMarker) { |
|
|
|
|
this.oldPositionMarker.setContent(this.oldPositionMarkerContent) |
|
|
|
|
} |
|
|
|
@ -207,7 +216,7 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
draggable: true, |
|
|
|
|
position: [this.markerPosition.x, this.markerPosition.y], |
|
|
|
|
content: this.newPositionMarkerContentBtn, |
|
|
|
|
offset: new AMap.Pixel(-15, -18) |
|
|
|
|
offset: new AMap.Pixel(-0, -0) |
|
|
|
|
}); |
|
|
|
|
this.map.add(this.newPositionMarker); |
|
|
|
|
|
|
|
|
@ -218,7 +227,10 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
this.markerPosition2 = { x: this.map.getCenter().lng, y: this.map.getCenter().lat } //获取当前地图中心位置
|
|
|
|
|
} |
|
|
|
|
this.newPositionMarker.on('dragend', (e) => { |
|
|
|
|
this.markerPosition2 = {x: e.lnglat.lng, y: e.lnglat.lat} |
|
|
|
|
this.markerPosition2 = { x: e.lnglat.KL, y: e.lnglat.kT } |
|
|
|
|
}) |
|
|
|
|
this.newPositionMarker.on('dragging', (e) => { |
|
|
|
|
this.newPositionMarker.setPosition(new AMap.LngLat(e.lnglat.lng,e.lnglat.lat)); |
|
|
|
|
}) |
|
|
|
|
//点击确定
|
|
|
|
|
this.renderer2.listen(this.elementRef.nativeElement.querySelector('#setPositionOk'), 'click', (event) => { |
|
|
|
@ -228,7 +240,7 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
this.newPositionMarker = new AMap.Marker({ |
|
|
|
|
position: [this.markerPosition2.x, this.markerPosition2.y], |
|
|
|
|
content: this.newPositionMarkerContent, |
|
|
|
|
offset: new AMap.Pixel(-15, -18) |
|
|
|
|
offset: new AMap.Pixel(-0, -0) |
|
|
|
|
}); |
|
|
|
|
this.markerPosition = this.markerPosition2 |
|
|
|
|
this.map.add(this.newPositionMarker); |
|
|
|
@ -241,7 +253,7 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
this.newPositionMarker = new AMap.Marker({ |
|
|
|
|
position: [this.markerPosition.x, this.markerPosition.y], |
|
|
|
|
content: this.newPositionMarkerContent, |
|
|
|
|
offset: new AMap.Pixel(-15, -18) |
|
|
|
|
offset: new AMap.Pixel(-0, -0) |
|
|
|
|
}); |
|
|
|
|
this.map.setCenter([this.markerPosition.x, this.markerPosition.y]); //设置地图中心点
|
|
|
|
|
this.map.add(this.newPositionMarker); |
|
|
|
@ -253,10 +265,12 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
this.newPositionMarker.setContent(this.oldPositionMarkerContent) |
|
|
|
|
} |
|
|
|
|
let center |
|
|
|
|
//this.markerPosition---单位坐标
|
|
|
|
|
if (this.markerPosition.x && this.markerPosition.x != 0) { |
|
|
|
|
center = [this.markerPosition.x, this.markerPosition.y] |
|
|
|
|
} else { |
|
|
|
|
center = this.map.getCenter(); //获取当前地图中心位置
|
|
|
|
|
console.log('获取当前地图中心位置', center) |
|
|
|
|
this.map.setCenter(center); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -264,18 +278,24 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
draggable: true, |
|
|
|
|
position: center, |
|
|
|
|
content: this.newPositionMarkerContentBtn, |
|
|
|
|
offset: new AMap.Pixel(-15, -18) |
|
|
|
|
offset: new AMap.Pixel(-0, -0) |
|
|
|
|
}); |
|
|
|
|
this.map.add(this.newPositionMarker); |
|
|
|
|
|
|
|
|
|
// let markerPosition
|
|
|
|
|
if (this.markerPosition.x && this.markerPosition.x != 0) { |
|
|
|
|
this.markerPosition2 = { x: this.markerPosition.x, y: this.markerPosition.y } |
|
|
|
|
} else { |
|
|
|
|
this.markerPosition2 = { x: this.map.getCenter().lng, y: this.map.getCenter().lat } //获取当前地图中心位置
|
|
|
|
|
} |
|
|
|
|
this.newPositionMarker.on('dragend', (e) => { |
|
|
|
|
this.markerPosition2 = {x: e.lnglat.lng, y: e.lnglat.lat} |
|
|
|
|
this.markerPosition2 = { x: e.lnglat.KL, y: e.lnglat.kT } |
|
|
|
|
}) |
|
|
|
|
this.newPositionMarker.on('dragging', (e) => { |
|
|
|
|
console.log('dragging',e) |
|
|
|
|
this.newPositionMarker.setPosition(new AMap.Pixel(e.pixel.x,e.pixel.y)); |
|
|
|
|
// let xxx = this.map.pixelToLngLat(e.pixel,this.map.getZoom())
|
|
|
|
|
// console.log(xxx)
|
|
|
|
|
// this.newPositionMarker.setPosition(xxx);
|
|
|
|
|
}) |
|
|
|
|
//点击确定
|
|
|
|
|
this.renderer2.listen(this.elementRef.nativeElement.querySelector('#setPositionOk'), 'click', (event) => { |
|
|
|
@ -286,9 +306,9 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
this.newPositionMarker = new AMap.Marker({ |
|
|
|
|
position: [ this.markerPosition.x, this.markerPosition.y], |
|
|
|
|
content: this.newPositionMarkerContent, |
|
|
|
|
offset: new AMap.Pixel(-15, -18) |
|
|
|
|
offset: new AMap.Pixel(-0, -0) |
|
|
|
|
}); |
|
|
|
|
this.map.add(this.newPositionMarker); |
|
|
|
|
this.newPositionMarker.setMap(this.map) |
|
|
|
|
}) |
|
|
|
|
this.renderer2.listen(this.elementRef.nativeElement.querySelector('#setPositionClose'), 'click', (event) => { |
|
|
|
|
this.map.clearMap(); |
|
|
|
@ -298,7 +318,7 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
this.newPositionMarker = new AMap.Marker({ |
|
|
|
|
position: [this.markerPosition.x, this.markerPosition.y], |
|
|
|
|
content: this.newPositionMarkerContent, |
|
|
|
|
offset: new AMap.Pixel(-15, -18) |
|
|
|
|
offset: new AMap.Pixel(-0, -0) |
|
|
|
|
}); |
|
|
|
|
this.map.setCenter([this.markerPosition.x, this.markerPosition.y]); //设置地图中心点
|
|
|
|
|
this.map.add(this.newPositionMarker); |
|
|
|
@ -489,9 +509,11 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
this.houses[this.selectedBuildingIndex].data = data |
|
|
|
|
//获得自定义信息
|
|
|
|
|
this.http.get("/api/CompanyAccount/BuildingCustomData",{params:{ //-----处理建筑自定义属性部分
|
|
|
|
|
this.http.get("/api/CompanyAccount/BuildingCustomData", { |
|
|
|
|
params: { //-----处理建筑自定义属性部分
|
|
|
|
|
buildingId: this.houses[this.selectedBuildingIndex].id |
|
|
|
|
}}).subscribe((data:any)=>{ |
|
|
|
|
} |
|
|
|
|
}).subscribe((data: any) => { |
|
|
|
|
if (data && data.customProperties.length != 0) { |
|
|
|
|
this.houses[this.selectedBuildingIndex].customData = data |
|
|
|
|
this.houses[this.selectedBuildingIndex].isCustomData = true |
|
|
|
@ -1053,16 +1075,20 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
//保存建筑自定义信息
|
|
|
|
|
if (item.isCustomData) { |
|
|
|
|
this.http.post("/api/CompanyAccount/BuildingCustomData",item.customData,{params:{ |
|
|
|
|
this.http.post("/api/CompanyAccount/BuildingCustomData", item.customData, { |
|
|
|
|
params: { |
|
|
|
|
buildingId: item.id |
|
|
|
|
}}).subscribe(data=>{ |
|
|
|
|
} |
|
|
|
|
}).subscribe(data => { |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
} else { |
|
|
|
|
item.customData.customProperties = [] |
|
|
|
|
this.http.post("/api/CompanyAccount/BuildingCustomData",item.customData,{params:{ |
|
|
|
|
this.http.post("/api/CompanyAccount/BuildingCustomData", item.customData, { |
|
|
|
|
params: { |
|
|
|
|
buildingId: item.id |
|
|
|
|
}}).subscribe(data=>{ |
|
|
|
|
} |
|
|
|
|
}).subscribe(data => { |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
@ -1133,3 +1159,41 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Component({ |
|
|
|
|
selector: 'app-changepassword', |
|
|
|
|
templateUrl: './changePassword.html', |
|
|
|
|
styleUrls: ['./changepassword.scss'] |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
export class ChangepasswordComponent2 implements OnInit { |
|
|
|
|
|
|
|
|
|
constructor(private http: HttpClient, public snackBar: MatSnackBar, |
|
|
|
|
public dialogRef: MatDialogRef<ChangepasswordComponent2>) { } |
|
|
|
|
|
|
|
|
|
ngOnInit() { |
|
|
|
|
} |
|
|
|
|
errmsg: string = '' |
|
|
|
|
|
|
|
|
|
onSubmit(e) { |
|
|
|
|
this.http.put( |
|
|
|
|
'/api/CompanyAccount/Password', |
|
|
|
|
{ |
|
|
|
|
newPassword: e.newPassword, |
|
|
|
|
password: e.password |
|
|
|
|
} |
|
|
|
|
).subscribe(data => { |
|
|
|
|
this.dialogRef.close(data); |
|
|
|
|
const config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000 |
|
|
|
|
this.snackBar.open('密码修改成功', '确定', config); |
|
|
|
|
}, (err) => { this.errmsg = err } |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|