Génération des pages
This commit is contained in:
parent
ddcdd29911
commit
bd7264f111
18
src/pages/buy/buy.html
Normal file
18
src/pages/buy/buy.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!--
|
||||
Generated template for the BuyPage page.
|
||||
|
||||
See http://ionicframework.com/docs/components/#navigation for more info on
|
||||
Ionic pages and navigation.
|
||||
-->
|
||||
<ion-header>
|
||||
|
||||
<ion-navbar>
|
||||
<ion-title>buy</ion-title>
|
||||
</ion-navbar>
|
||||
|
||||
</ion-header>
|
||||
|
||||
|
||||
<ion-content padding>
|
||||
|
||||
</ion-content>
|
13
src/pages/buy/buy.module.ts
Normal file
13
src/pages/buy/buy.module.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { IonicPageModule } from 'ionic-angular';
|
||||
import { BuyPage } from './buy';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
BuyPage,
|
||||
],
|
||||
imports: [
|
||||
IonicPageModule.forChild(BuyPage),
|
||||
],
|
||||
})
|
||||
export class BuyPageModule {}
|
3
src/pages/buy/buy.scss
Normal file
3
src/pages/buy/buy.scss
Normal file
|
@ -0,0 +1,3 @@
|
|||
page-buy {
|
||||
|
||||
}
|
25
src/pages/buy/buy.ts
Normal file
25
src/pages/buy/buy.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
||||
|
||||
/**
|
||||
* Generated class for the BuyPage page.
|
||||
*
|
||||
* See https://ionicframework.com/docs/components/#navigation for more info on
|
||||
* Ionic pages and navigation.
|
||||
*/
|
||||
|
||||
@IonicPage()
|
||||
@Component({
|
||||
selector: 'page-buy',
|
||||
templateUrl: 'buy.html',
|
||||
})
|
||||
export class BuyPage {
|
||||
|
||||
constructor(public navCtrl: NavController, public navParams: NavParams) {
|
||||
}
|
||||
|
||||
ionViewDidLoad() {
|
||||
console.log('ionViewDidLoad BuyPage');
|
||||
}
|
||||
|
||||
}
|
18
src/pages/contacts/contacts.html
Normal file
18
src/pages/contacts/contacts.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!--
|
||||
Generated template for the ContactsPage page.
|
||||
|
||||
See http://ionicframework.com/docs/components/#navigation for more info on
|
||||
Ionic pages and navigation.
|
||||
-->
|
||||
<ion-header>
|
||||
|
||||
<ion-navbar>
|
||||
<ion-title>contacts</ion-title>
|
||||
</ion-navbar>
|
||||
|
||||
</ion-header>
|
||||
|
||||
|
||||
<ion-content padding>
|
||||
|
||||
</ion-content>
|
13
src/pages/contacts/contacts.module.ts
Normal file
13
src/pages/contacts/contacts.module.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { IonicPageModule } from 'ionic-angular';
|
||||
import { ContactsPage } from './contacts';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
ContactsPage,
|
||||
],
|
||||
imports: [
|
||||
IonicPageModule.forChild(ContactsPage),
|
||||
],
|
||||
})
|
||||
export class ContactsPageModule {}
|
3
src/pages/contacts/contacts.scss
Normal file
3
src/pages/contacts/contacts.scss
Normal file
|
@ -0,0 +1,3 @@
|
|||
page-contacts {
|
||||
|
||||
}
|
25
src/pages/contacts/contacts.ts
Normal file
25
src/pages/contacts/contacts.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
||||
|
||||
/**
|
||||
* Generated class for the ContactsPage page.
|
||||
*
|
||||
* See https://ionicframework.com/docs/components/#navigation for more info on
|
||||
* Ionic pages and navigation.
|
||||
*/
|
||||
|
||||
@IonicPage()
|
||||
@Component({
|
||||
selector: 'page-contacts',
|
||||
templateUrl: 'contacts.html',
|
||||
})
|
||||
export class ContactsPage {
|
||||
|
||||
constructor(public navCtrl: NavController, public navParams: NavParams) {
|
||||
}
|
||||
|
||||
ionViewDidLoad() {
|
||||
console.log('ionViewDidLoad ContactsPage');
|
||||
}
|
||||
|
||||
}
|
|
@ -1,14 +1,18 @@
|
|||
<!--
|
||||
Generated template for the HomePage page.
|
||||
|
||||
See http://ionicframework.com/docs/components/#navigation for more info on
|
||||
Ionic pages and navigation.
|
||||
-->
|
||||
<ion-header>
|
||||
|
||||
<ion-navbar>
|
||||
<ion-title>
|
||||
Ionic Blank
|
||||
</ion-title>
|
||||
<ion-title>home</ion-title>
|
||||
</ion-navbar>
|
||||
|
||||
</ion-header>
|
||||
|
||||
|
||||
<ion-content padding>
|
||||
The world is your oyster.
|
||||
<p>
|
||||
If you get lost, the <a href="http://ionicframework.com/docs/v2">docs</a> will be your guide.
|
||||
</p>
|
||||
|
||||
</ion-content>
|
||||
|
|
13
src/pages/home/home.module.ts
Normal file
13
src/pages/home/home.module.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { IonicPageModule } from 'ionic-angular';
|
||||
import { HomePage } from './home';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
HomePage,
|
||||
],
|
||||
imports: [
|
||||
IonicPageModule.forChild(HomePage),
|
||||
],
|
||||
})
|
||||
export class HomePageModule {}
|
|
@ -1,14 +1,25 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { NavController } from 'ionic-angular';
|
||||
import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
||||
|
||||
/**
|
||||
* Generated class for the HomePage page.
|
||||
*
|
||||
* See https://ionicframework.com/docs/components/#navigation for more info on
|
||||
* Ionic pages and navigation.
|
||||
*/
|
||||
|
||||
@IonicPage()
|
||||
@Component({
|
||||
selector: 'page-home',
|
||||
templateUrl: 'home.html'
|
||||
templateUrl: 'home.html',
|
||||
})
|
||||
export class HomePage {
|
||||
|
||||
constructor(public navCtrl: NavController) {
|
||||
constructor(public navCtrl: NavController, public navParams: NavParams) {
|
||||
}
|
||||
|
||||
ionViewDidLoad() {
|
||||
console.log('ionViewDidLoad HomePage');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
18
src/pages/login/login.html
Normal file
18
src/pages/login/login.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!--
|
||||
Generated template for the LoginPage page.
|
||||
|
||||
See http://ionicframework.com/docs/components/#navigation for more info on
|
||||
Ionic pages and navigation.
|
||||
-->
|
||||
<ion-header>
|
||||
|
||||
<ion-navbar>
|
||||
<ion-title>login</ion-title>
|
||||
</ion-navbar>
|
||||
|
||||
</ion-header>
|
||||
|
||||
|
||||
<ion-content padding>
|
||||
|
||||
</ion-content>
|
13
src/pages/login/login.module.ts
Normal file
13
src/pages/login/login.module.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { IonicPageModule } from 'ionic-angular';
|
||||
import { LoginPage } from './login';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
LoginPage,
|
||||
],
|
||||
imports: [
|
||||
IonicPageModule.forChild(LoginPage),
|
||||
],
|
||||
})
|
||||
export class LoginPageModule {}
|
3
src/pages/login/login.scss
Normal file
3
src/pages/login/login.scss
Normal file
|
@ -0,0 +1,3 @@
|
|||
page-login {
|
||||
|
||||
}
|
25
src/pages/login/login.ts
Normal file
25
src/pages/login/login.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
||||
|
||||
/**
|
||||
* Generated class for the LoginPage page.
|
||||
*
|
||||
* See https://ionicframework.com/docs/components/#navigation for more info on
|
||||
* Ionic pages and navigation.
|
||||
*/
|
||||
|
||||
@IonicPage()
|
||||
@Component({
|
||||
selector: 'page-login',
|
||||
templateUrl: 'login.html',
|
||||
})
|
||||
export class LoginPage {
|
||||
|
||||
constructor(public navCtrl: NavController, public navParams: NavParams) {
|
||||
}
|
||||
|
||||
ionViewDidLoad() {
|
||||
console.log('ionViewDidLoad LoginPage');
|
||||
}
|
||||
|
||||
}
|
18
src/pages/search/search.html
Normal file
18
src/pages/search/search.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!--
|
||||
Generated template for the SearchPage page.
|
||||
|
||||
See http://ionicframework.com/docs/components/#navigation for more info on
|
||||
Ionic pages and navigation.
|
||||
-->
|
||||
<ion-header>
|
||||
|
||||
<ion-navbar>
|
||||
<ion-title>search</ion-title>
|
||||
</ion-navbar>
|
||||
|
||||
</ion-header>
|
||||
|
||||
|
||||
<ion-content padding>
|
||||
|
||||
</ion-content>
|
13
src/pages/search/search.module.ts
Normal file
13
src/pages/search/search.module.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { IonicPageModule } from 'ionic-angular';
|
||||
import { SearchPage } from './search';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
SearchPage,
|
||||
],
|
||||
imports: [
|
||||
IonicPageModule.forChild(SearchPage),
|
||||
],
|
||||
})
|
||||
export class SearchPageModule {}
|
3
src/pages/search/search.scss
Normal file
3
src/pages/search/search.scss
Normal file
|
@ -0,0 +1,3 @@
|
|||
page-search {
|
||||
|
||||
}
|
25
src/pages/search/search.ts
Normal file
25
src/pages/search/search.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
||||
|
||||
/**
|
||||
* Generated class for the SearchPage page.
|
||||
*
|
||||
* See https://ionicframework.com/docs/components/#navigation for more info on
|
||||
* Ionic pages and navigation.
|
||||
*/
|
||||
|
||||
@IonicPage()
|
||||
@Component({
|
||||
selector: 'page-search',
|
||||
templateUrl: 'search.html',
|
||||
})
|
||||
export class SearchPage {
|
||||
|
||||
constructor(public navCtrl: NavController, public navParams: NavParams) {
|
||||
}
|
||||
|
||||
ionViewDidLoad() {
|
||||
console.log('ionViewDidLoad SearchPage');
|
||||
}
|
||||
|
||||
}
|
18
src/pages/send/send.html
Normal file
18
src/pages/send/send.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!--
|
||||
Generated template for the SendPage page.
|
||||
|
||||
See http://ionicframework.com/docs/components/#navigation for more info on
|
||||
Ionic pages and navigation.
|
||||
-->
|
||||
<ion-header>
|
||||
|
||||
<ion-navbar>
|
||||
<ion-title>send</ion-title>
|
||||
</ion-navbar>
|
||||
|
||||
</ion-header>
|
||||
|
||||
|
||||
<ion-content padding>
|
||||
|
||||
</ion-content>
|
13
src/pages/send/send.module.ts
Normal file
13
src/pages/send/send.module.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { IonicPageModule } from 'ionic-angular';
|
||||
import { SendPage } from './send';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
SendPage,
|
||||
],
|
||||
imports: [
|
||||
IonicPageModule.forChild(SendPage),
|
||||
],
|
||||
})
|
||||
export class SendPageModule {}
|
3
src/pages/send/send.scss
Normal file
3
src/pages/send/send.scss
Normal file
|
@ -0,0 +1,3 @@
|
|||
page-send {
|
||||
|
||||
}
|
25
src/pages/send/send.ts
Normal file
25
src/pages/send/send.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
||||
|
||||
/**
|
||||
* Generated class for the SendPage page.
|
||||
*
|
||||
* See https://ionicframework.com/docs/components/#navigation for more info on
|
||||
* Ionic pages and navigation.
|
||||
*/
|
||||
|
||||
@IonicPage()
|
||||
@Component({
|
||||
selector: 'page-send',
|
||||
templateUrl: 'send.html',
|
||||
})
|
||||
export class SendPage {
|
||||
|
||||
constructor(public navCtrl: NavController, public navParams: NavParams) {
|
||||
}
|
||||
|
||||
ionViewDidLoad() {
|
||||
console.log('ionViewDidLoad SendPage');
|
||||
}
|
||||
|
||||
}
|
18
src/pages/transactions/transactions.html
Normal file
18
src/pages/transactions/transactions.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!--
|
||||
Generated template for the TransactionsPage page.
|
||||
|
||||
See http://ionicframework.com/docs/components/#navigation for more info on
|
||||
Ionic pages and navigation.
|
||||
-->
|
||||
<ion-header>
|
||||
|
||||
<ion-navbar>
|
||||
<ion-title>transactions</ion-title>
|
||||
</ion-navbar>
|
||||
|
||||
</ion-header>
|
||||
|
||||
|
||||
<ion-content padding>
|
||||
|
||||
</ion-content>
|
13
src/pages/transactions/transactions.module.ts
Normal file
13
src/pages/transactions/transactions.module.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { IonicPageModule } from 'ionic-angular';
|
||||
import { TransactionsPage } from './transactions';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
TransactionsPage,
|
||||
],
|
||||
imports: [
|
||||
IonicPageModule.forChild(TransactionsPage),
|
||||
],
|
||||
})
|
||||
export class TransactionsPageModule {}
|
3
src/pages/transactions/transactions.scss
Normal file
3
src/pages/transactions/transactions.scss
Normal file
|
@ -0,0 +1,3 @@
|
|||
page-transactions {
|
||||
|
||||
}
|
25
src/pages/transactions/transactions.ts
Normal file
25
src/pages/transactions/transactions.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
||||
|
||||
/**
|
||||
* Generated class for the TransactionsPage page.
|
||||
*
|
||||
* See https://ionicframework.com/docs/components/#navigation for more info on
|
||||
* Ionic pages and navigation.
|
||||
*/
|
||||
|
||||
@IonicPage()
|
||||
@Component({
|
||||
selector: 'page-transactions',
|
||||
templateUrl: 'transactions.html',
|
||||
})
|
||||
export class TransactionsPage {
|
||||
|
||||
constructor(public navCtrl: NavController, public navParams: NavParams) {
|
||||
}
|
||||
|
||||
ionViewDidLoad() {
|
||||
console.log('ionViewDidLoad TransactionsPage');
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue