-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pantalla de mis bitacoras y estaciones de trabajo
- Loading branch information
Showing
13 changed files
with
121 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Stack trace: | ||
Frame Function Args | ||
000FFFFA328 0018005D44E (0018023C1CD, 0018021DC26, 000FFFFA328, 000FFFF9220) | ||
000FFFFA328 00180046609 (00000000000, 00000000000, 00000000000, 001005F0D44) | ||
000FFFFA328 00180046642 (0018023C289, 000FFFFA1D8, 000FFFFA328, 00000000000) | ||
000FFFFA328 001800AA5FF (00000000000, 00000000000, 00000000000, 00000000000) | ||
000FFFFA328 001800AA84D (000FFFFA340, 00000000000, 00000000000, 00000000000) | ||
000FFFFA3C0 001800ABB1C (000FFFFA340, 00000000000, 00000000000, 00000000000) | ||
End of stack trace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<ion-header> | ||
<ion-navbar color="azulatome"> | ||
<button ion-button menuToggle> | ||
<ion-icon name="menu"></ion-icon> | ||
</button> | ||
<ion-title>Crear Bitácora de Trabajo</ion-title> | ||
</ion-navbar> | ||
|
||
</ion-header> | ||
|
||
|
||
<ion-content padding> | ||
|
||
<ion-item> | ||
<ion-label>Estacion de Trabajo:</ion-label> | ||
<ion-select [(ngModel)]="selectedvalue"> | ||
<!-- carga los alamcenes del centro comercial --> | ||
<ion-option *ngFor="let estacion of estaciones | async"><h2>{{ estacion.nombre }}</h2></ion-option> | ||
</ion-select> | ||
</ion-item> | ||
</ion-content> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { IonicPageModule } from 'ionic-angular'; | ||
import { CrearBitacoraPage } from './crear-bitacora'; | ||
|
||
@NgModule({ | ||
declarations: [ | ||
CrearBitacoraPage, | ||
], | ||
imports: [ | ||
IonicPageModule.forChild(CrearBitacoraPage), | ||
], | ||
}) | ||
export class CrearBitacoraPageModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
page-crear-bitacora { | ||
|
||
.toolbar-md-azulatome .bar-button-clear-md, | ||
.toolbar-md-azulatome .bar-button-default-md, | ||
.toolbar-md-azulatome .bar-button-outline-md, | ||
.toolbar-md-azulatome .toolbar-title-md | ||
{ | ||
color : black | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { Component } from '@angular/core'; | ||
import { IonicPage, NavController, NavParams } from 'ionic-angular'; | ||
//import { FirebaseListObservable, FirebaseObjectObservable } from 'angularfire2'; | ||
import { AngularFireDatabase } from 'angularfire2/database'; | ||
|
||
/** | ||
* Generated class for the CrearBitacoraPage page. | ||
* | ||
* See https://ionicframework.com/docs/components/#navigation for more info on | ||
* Ionic pages and navigation. | ||
*/ | ||
|
||
@IonicPage() | ||
@Component({ | ||
selector: 'page-crear-bitacora', | ||
templateUrl: 'crear-bitacora.html', | ||
}) | ||
export class CrearBitacoraPage { | ||
// almacenes: FirebaseListObservable<any>; | ||
|
||
constructor(public navCtrl: NavController, public navParams: NavParams) { | ||
} | ||
|
||
ionViewDidLoad() { | ||
console.log('ionViewDidLoad CrearBitacoraPage'); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,8 @@ export class MisestacionesPage { | |
this.navCtrl.setRoot(page); | ||
} | ||
|
||
openPageHija(page){ | ||
this.navCtrl.push(page); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.