|
|
@@ -1,15 +1,39 @@ |
|
|
|
import { Component, OnInit } from '@angular/core'; |
|
|
|
|
|
|
|
@Component({ |
|
|
|
selector: 'app-shop', |
|
|
|
templateUrl: './shop.page.html', |
|
|
|
styleUrls: ['./shop.page.scss'], |
|
|
|
selector: 'app-shop', |
|
|
|
templateUrl: './shop.page.html', |
|
|
|
styleUrls: ['./shop.page.scss'], |
|
|
|
}) |
|
|
|
export class ShopPage implements OnInit { |
|
|
|
products: Array<{ |
|
|
|
name: string, |
|
|
|
price: number, |
|
|
|
image: string |
|
|
|
}> = []; |
|
|
|
|
|
|
|
constructor() { } |
|
|
|
constructor() { } |
|
|
|
|
|
|
|
ngOnInit() { |
|
|
|
} |
|
|
|
ngOnInit() { |
|
|
|
|
|
|
|
this.products = [{ |
|
|
|
name: 'KXIP Jersy', |
|
|
|
price: 300, |
|
|
|
image: 'https://www.kxip.in/static-assets/images/product/player-replica-jersey-ed-2020-front.jpg' |
|
|
|
}, { |
|
|
|
name: 'KXIP Practice Jersey', |
|
|
|
price: 300, |
|
|
|
image: 'https://www.kxip.in/static-assets/images/product/kxip-player-replica-practice-jersey-2020.jpg' |
|
|
|
}, { |
|
|
|
name: 'KXIP Track suit', |
|
|
|
price: 300, |
|
|
|
image: 'https://www.kxip.in/static-assets/images/product/kxip-replica-active-tracksuit-ed-2020.jpg' |
|
|
|
}, { |
|
|
|
name: 'KXIP Track top', |
|
|
|
price: 300, |
|
|
|
image: 'https://www.kxip.in/static-assets/images/product/KXIP-Replica-Active-Track-Top-Ed-2020.jpg' |
|
|
|
}]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |