diff --git a/src/app/key-unit/basicinfo/basicinfo.component.ts b/src/app/key-unit/basicinfo/basicinfo.component.ts index 97b224e..93f7410 100644 --- a/src/app/key-unit/basicinfo/basicinfo.component.ts +++ b/src/app/key-unit/basicinfo/basicinfo.component.ts @@ -931,7 +931,7 @@ export class BasicinfoComponent implements OnInit { name: this.unitinfo.name, usci: value.creditcode, contacts: value.linkman, - phone: value.linkphone, + phone: String(value.linkphone), address: value.unitaddress, imageUrl: this.imgsrc, location: this.markerPosition, diff --git a/src/app/plan-management/create-plan-online-five/create-plan-online-five.component.ts b/src/app/plan-management/create-plan-online-five/create-plan-online-five.component.ts index 4648c18..f079d4d 100644 --- a/src/app/plan-management/create-plan-online-five/create-plan-online-five.component.ts +++ b/src/app/plan-management/create-plan-online-five/create-plan-online-five.component.ts @@ -1,5 +1,6 @@ import { HttpClient } from '@angular/common/http'; import { Component, OnInit } from '@angular/core'; +import { ActivatedRoute } from '@angular/router'; @Component({ selector: 'app-create-plan-online-five', @@ -8,12 +9,28 @@ import { Component, OnInit } from '@angular/core'; }) export class CreatePlanOnlineFiveComponent implements OnInit { - constructor(private http: HttpClient) { } + constructor(private http: HttpClient, private route: ActivatedRoute) { } ngOnInit(): void { this.getTemplateData() } + //获得单位信息 + getUnitData(){ + // let paramsdata:any = { + // Name: this.route.snapshot.queryParams.unitId || '', + // } + // this.http.get("/api/Companies",{params:paramsdata}).subscribe((data:any)=>{ + // this.allKeyUnitInfo = data + // data.items.forEach( (item,index) => { + // item.integrity = this.wanzhengduArr[index] + // }) + // }) + } + + + + selectedItem:string = '封面' clickTitleItem(item){ item == '封面' ? this.selectedItem = '封面' : this.selectedItem = item.groupName