From 4d04085d33d5a6408dc1a8679b0c2ce44dbc2d26 Mon Sep 17 00:00:00 2001 From: Marcelo Puebla Date: Tue, 31 Dec 2019 10:58:41 -0300 Subject: [PATCH] Nuevo de modulo --- .../info-formas-pago-routing.module.ts | 11 ++++++++ .../info-formas-pago.component.html | 32 ++++++++++++++++++++++ .../info-formas-pago.component.scss | 0 .../info-formas-pago.component.spec.ts | 25 +++++++++++++++++ .../info-formas-pago/info-formas-pago.component.ts | 12 ++++++++ .../info-formas-pago/info-formas-pago.module.ts | 15 ++++++++++ 6 files changed, 95 insertions(+) create mode 100644 src/app/modules/info-formas-pago/info-formas-pago-routing.module.ts create mode 100644 src/app/modules/info-formas-pago/info-formas-pago.component.html create mode 100644 src/app/modules/info-formas-pago/info-formas-pago.component.scss create mode 100644 src/app/modules/info-formas-pago/info-formas-pago.component.spec.ts create mode 100644 src/app/modules/info-formas-pago/info-formas-pago.component.ts create mode 100644 src/app/modules/info-formas-pago/info-formas-pago.module.ts diff --git a/src/app/modules/info-formas-pago/info-formas-pago-routing.module.ts b/src/app/modules/info-formas-pago/info-formas-pago-routing.module.ts new file mode 100644 index 0000000..6d8893b --- /dev/null +++ b/src/app/modules/info-formas-pago/info-formas-pago-routing.module.ts @@ -0,0 +1,11 @@ +import { NgModule } from "@angular/core"; +import { Routes, RouterModule } from "@angular/router"; +import { InfoFormasPagoComponent } from "./info-formas-pago.component"; + +const routes: Routes = [{ path: "", component: InfoFormasPagoComponent }]; + +@NgModule({ + imports: [RouterModule.forChild(routes)], + exports: [RouterModule] +}) +export class InfoFormasPagoRoutingModule {} diff --git a/src/app/modules/info-formas-pago/info-formas-pago.component.html b/src/app/modules/info-formas-pago/info-formas-pago.component.html new file mode 100644 index 0000000..e095499 --- /dev/null +++ b/src/app/modules/info-formas-pago/info-formas-pago.component.html @@ -0,0 +1,32 @@ +
+
+
+ +
+
+
+
+
+ +

ESTA TERMINAL OPERA CON

+

+ tarjetas y + +

+
+ CONTINUAR + +
+
+
+
+
+ +

SI PREFERIS PAGAR EN EFECTIVO

+

te esperamos en la caja

+
+
+
+
diff --git a/src/app/modules/info-formas-pago/info-formas-pago.component.scss b/src/app/modules/info-formas-pago/info-formas-pago.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/modules/info-formas-pago/info-formas-pago.component.spec.ts b/src/app/modules/info-formas-pago/info-formas-pago.component.spec.ts new file mode 100644 index 0000000..c11599d --- /dev/null +++ b/src/app/modules/info-formas-pago/info-formas-pago.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { InfoFormasPagoComponent } from './info-formas-pago.component'; + +describe('InfoFormasPagoComponent', () => { + let component: InfoFormasPagoComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ InfoFormasPagoComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(InfoFormasPagoComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/modules/info-formas-pago/info-formas-pago.component.ts b/src/app/modules/info-formas-pago/info-formas-pago.component.ts new file mode 100644 index 0000000..cd32162 --- /dev/null +++ b/src/app/modules/info-formas-pago/info-formas-pago.component.ts @@ -0,0 +1,12 @@ +import { Component, OnInit } from "@angular/core"; + +@Component({ + selector: "app-formas-pago", + templateUrl: "./info-formas-pago.component.html", + styleUrls: ["./info-formas-pago.component.scss"] +}) +export class InfoFormasPagoComponent implements OnInit { + constructor() {} + + ngOnInit() {} +} diff --git a/src/app/modules/info-formas-pago/info-formas-pago.module.ts b/src/app/modules/info-formas-pago/info-formas-pago.module.ts new file mode 100644 index 0000000..bdd7523 --- /dev/null +++ b/src/app/modules/info-formas-pago/info-formas-pago.module.ts @@ -0,0 +1,15 @@ +import { NgModule } from '@angular/core'; +import { CommonModule } from '@angular/common'; + +import { InfoFormasPagoRoutingModule } from './info-formas-pago-routing.module'; +import { InfoFormasPagoComponent } from './info-formas-pago.component'; + + +@NgModule({ + declarations: [InfoFormasPagoComponent], + imports: [ + CommonModule, + InfoFormasPagoRoutingModule + ] +}) +export class InfoFormasPagoModule { } -- 1.9.1