|
|
@ -1,5 +1,6 @@ |
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
import { Component, OnInit } from '@angular/core'; |
|
|
|
import { Component, OnInit } from '@angular/core'; |
|
|
|
|
|
|
|
import { ActivatedRoute } from '@angular/router'; |
|
|
|
|
|
|
|
|
|
|
|
@Component({ |
|
|
|
@Component({ |
|
|
|
selector: 'app-create-plan-online-five', |
|
|
|
selector: 'app-create-plan-online-five', |
|
|
@ -8,12 +9,28 @@ import { Component, OnInit } from '@angular/core'; |
|
|
|
}) |
|
|
|
}) |
|
|
|
export class CreatePlanOnlineFiveComponent implements OnInit { |
|
|
|
export class CreatePlanOnlineFiveComponent implements OnInit { |
|
|
|
|
|
|
|
|
|
|
|
constructor(private http: HttpClient) { } |
|
|
|
constructor(private http: HttpClient, private route: ActivatedRoute) { } |
|
|
|
|
|
|
|
|
|
|
|
ngOnInit(): void { |
|
|
|
ngOnInit(): void { |
|
|
|
this.getTemplateData() |
|
|
|
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 = '封面' |
|
|
|
selectedItem:string = '封面' |
|
|
|
clickTitleItem(item){ |
|
|
|
clickTitleItem(item){ |
|
|
|
item == '封面' ? this.selectedItem = '封面' : this.selectedItem = item.groupName |
|
|
|
item == '封面' ? this.selectedItem = '封面' : this.selectedItem = item.groupName |
|
|
|