Changeset 5d02859 for Farmatiko/ClientApp
- Timestamp:
- 09/30/20 10:37:22 (4 years ago)
- Branches:
- master
- Children:
- 1454207
- Parents:
- 63d885e
- Location:
- Farmatiko/ClientApp/src/app
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/ClientApp/src/app/korona/korona.component.html
r63d885e r5d02859 1 1 <app-nav-menu></app-nav-menu> 2 2 3 <div class="container" >3 <div class="container" *ngIf="korona"> 4 4 <div class="row"> 5 5 <br /> 6 6 <div class="col text-center"> 7 <h2> Коронавирус</h2>7 <h2>{{korona[0].name}}</h2> 8 8 <p>статистика</p> 9 9 </div> … … 11 11 <div class="row text-center pads"> 12 12 <div class="col"> 13 <div class="counter" >14 <i class="fa fa-code fa-2x" *ngIf="korona">{{korona.totalMK}}</i>13 <div class="counter" *ngIf="korona"> 14 <i class="fa fa-code fa-2x">{{korona[0].totalMK}}</i> 15 15 <h2 class="timer count-title count-number"></h2> 16 16 <p class="count-text ">Вкупно случаи во земјата</p> … … 18 18 </div> 19 19 <div class="col"> 20 <div class="counter" >21 <i class="fa fa-coffee fa-2x" *ngIf="korona">{{korona.activeMK}}</i>20 <div class="counter" *ngIf="korona"> 21 <i class="fa fa-coffee fa-2x">{{korona[0].activeMK}}</i> 22 22 <h2 class="timer count-title count-number"></h2> 23 23 <p class="count-text ">Активни случаи во земјата</p> … … 25 25 </div> 26 26 <div class="col"> 27 <div class="counter" >28 <i class="fa fa-lightbulb-o fa-2x" *ngIf="korona">{{korona.deathsMK}}</i>27 <div class="counter" *ngIf="korona"> 28 <i class="fa fa-lightbulb-o fa-2x">{{korona[0].deathsMK}}</i> 29 29 <h2 class="timer count-title count-number"></h2> 30 30 <p class="count-text ">Смртни случаи во земјата</p> … … 32 32 </div> 33 33 <div class="col"> 34 <div class="counter" >35 <i class="fa fa-bug fa-2x" *ngIf="korona">{{korona.newMK}}</i>34 <div class="counter" *ngIf="korona"> 35 <i class="fa fa-bug fa-2x">{{korona[0].newMK}}</i> 36 36 <h2 class="timer count-title count-number"></h2> 37 37 <p class="count-text ">Нови случаи во земјата</p> … … 41 41 <div class="row text-center pads"> 42 42 <div class="col"> 43 <div class="counter" >44 <i class="fa fa-bug fa-2x" *ngIf="korona">{{korona.totalGlobal}}</i>43 <div class="counter" *ngIf="korona"> 44 <i class="fa fa-bug fa-2x">{{korona[0].totalGlobal}}</i> 45 45 <h2 class="timer count-title count-number"></h2> 46 46 <p class="count-text ">Вкупно случаи глобално</p> … … 48 48 </div> 49 49 <div class="col"> 50 <div class="counter" >51 <i class="fa fa-bug fa-2x" *ngIf="korona">{{korona.activeGlobal}}</i>50 <div class="counter" *ngIf="korona"> 51 <i class="fa fa-bug fa-2x">{{korona[0].activeGlobal}}</i> 52 52 <h2 class="timer count-title count-number"></h2> 53 53 <p class="count-text ">Активни случаи глобално</p> … … 55 55 </div> 56 56 <div class="col"> 57 <div class="counter" >58 <i class="fa fa-bug fa-2x" *ngIf="korona">{{korona.deathsGlobal}}</i>57 <div class="counter" *ngIf="korona"> 58 <i class="fa fa-bug fa-2x">{{korona[0].deathsGlobal}}</i> 59 59 <h2 class="timer count-title count-number"></h2> 60 60 <p class="count-text ">Смртни случаи глобално</p> -
Farmatiko/ClientApp/src/app/korona/korona.component.ts
r63d885e r5d02859 9 9 }) 10 10 export class KoronaComponent implements OnInit { 11 public korona: IPandemic ;11 public korona: IPandemic[]; 12 12 13 13 constructor(private dataService: DataService) { … … 17 17 ngOnInit(): void { 18 18 this.dataService.getPandemic() 19 .subscribe((res: IPandemic ) => {19 .subscribe((res: IPandemic[]) => { 20 20 this.korona = res; 21 console.log(this.korona); 21 22 }, 22 23 (err: any) => console.log(err), -
Farmatiko/ClientApp/src/app/shared/data.service.ts
r63d885e r5d02859 11 11 baseFacilitiesUrl: string = '/api/facilities'; 12 12 baseWorkersUrl: string = '/api/workers'; 13 baseMedicineUrl: string = '/api/medicine ';13 baseMedicineUrl: string = '/api/medicines'; 14 14 basePandemicUrl: string = '/api/pandemic'; 15 15 basePharmacyUrl: string = '/api/pharmacy'; 16 16 basePharmacyHead: string = '/api/pharmacyhead'; 17 17 18 constructor(private http: HttpClient) { 18 constructor(private http: HttpClient) { 19 19 20 20 } … … 44 44 } 45 45 46 46 47 47 //Worker GET 48 48 getWorkers() : Observable<IHealthcareWorkers[]> { … … 69 69 } 70 70 71 71 72 72 //Medicine GET 73 73 getMedicines() : Observable<IMedicine[]> { … … 95 95 96 96 97 getPandemic() : Observable<IPandemic > {98 return this.http.get<IPandemic >(this.basePandemicUrl)97 getPandemic() : Observable<IPandemic[]> { 98 return this.http.get<IPandemic[]>(this.basePandemicUrl) 99 99 .pipe(catchError(this.handleError)); 100 100 } … … 179 179 //PharmacyHead PUT 180 180 updatePharmacyHead(head: IPharmacyHead) : Observable<IPharmacyHead> { 181 return this.http.put<IPharmacyHead>(this.basePharmacyHead + '/' + head.id, head) 181 return this.http.put<IPharmacyHead>(this.basePharmacyHead + '/' + head.id, head) 182 182 .pipe( 183 183 map((data) => { … … 198 198 199 199 private handleError(error: HttpErrorResponse) { 200 console.error('server error:', error); 200 console.error('server error:', error); 201 201 if (error.error instanceof Error) { 202 202 let errMessage = error.error.message;
Note:
See TracChangeset
for help on using the changeset viewer.