diff --git a/src/app/modules/forma-pago/forma-pago-routing.module.ts b/src/app/modules/forma-pago/forma-pago-routing.module.ts new file mode 100644 index 0000000..9e89dea --- /dev/null +++ b/src/app/modules/forma-pago/forma-pago-routing.module.ts @@ -0,0 +1,13 @@ +import { NgModule } from '@angular/core'; +import { Routes, RouterModule } from '@angular/router'; +import { FormaPagoComponent } from './forma-pago.component'; + +const routes: Routes = [ + { path: '', component: FormaPagoComponent } +]; + +@NgModule({ + imports: [RouterModule.forChild(routes)], + exports: [RouterModule] +}) +export class FormaPagoRoutingModule { } diff --git a/src/app/modules/forma-pago/forma-pago.component.html b/src/app/modules/forma-pago/forma-pago.component.html new file mode 100644 index 0000000..7558ec2 --- /dev/null +++ b/src/app/modules/forma-pago/forma-pago.component.html @@ -0,0 +1,77 @@ +
+
+
+ +
+
+
+
+
+
+

SELECCIONA UNA FORMA DE PAGO

+
+
+
+ +
+
+
+
+
+ +
+
Pago electrónico
+
+ +
+
+
+
+
+ +
+
+
+
+
+ +
+
Pago con tarjeta
+
+ +
+
+
+
+
+
+
diff --git a/src/app/modules/forma-pago/forma-pago.component.scss b/src/app/modules/forma-pago/forma-pago.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/modules/forma-pago/forma-pago.component.spec.ts b/src/app/modules/forma-pago/forma-pago.component.spec.ts new file mode 100644 index 0000000..8f9fa55 --- /dev/null +++ b/src/app/modules/forma-pago/forma-pago.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { FormaPagoComponent } from './forma-pago.component'; + +describe('FormaPagoComponent', () => { + let component: FormaPagoComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ FormaPagoComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(FormaPagoComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/modules/forma-pago/forma-pago.component.ts b/src/app/modules/forma-pago/forma-pago.component.ts new file mode 100644 index 0000000..8d8e93e --- /dev/null +++ b/src/app/modules/forma-pago/forma-pago.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-forma-pago', + templateUrl: './forma-pago.component.html', + styleUrls: ['./forma-pago.component.scss'] +}) +export class FormaPagoComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/src/app/modules/forma-pago/forma-pago.module.ts b/src/app/modules/forma-pago/forma-pago.module.ts new file mode 100644 index 0000000..baadb3e --- /dev/null +++ b/src/app/modules/forma-pago/forma-pago.module.ts @@ -0,0 +1,15 @@ +import { NgModule } from '@angular/core'; +import { CommonModule } from '@angular/common'; + +import { FormaPagoRoutingModule } from './forma-pago-routing.module'; +import { FormaPagoComponent } from './forma-pago.component'; + + +@NgModule({ + declarations: [FormaPagoComponent], + imports: [ + CommonModule, + FormaPagoRoutingModule + ] +}) +export class FormaPagoModule { } diff --git a/src/app/modules/pago-electronico/pago-electronico-routing.module.ts b/src/app/modules/pago-electronico/pago-electronico-routing.module.ts new file mode 100644 index 0000000..4d7ddb6 --- /dev/null +++ b/src/app/modules/pago-electronico/pago-electronico-routing.module.ts @@ -0,0 +1,13 @@ +import { NgModule } from '@angular/core'; +import { Routes, RouterModule } from '@angular/router'; +import { PagoElectronicoComponent } from './pago-electronico.component'; + +const routes: Routes = [ + { path: '', component: PagoElectronicoComponent } +]; + +@NgModule({ + imports: [RouterModule.forChild(routes)], + exports: [RouterModule] +}) +export class PagoElectronicoRoutingModule { } diff --git a/src/app/modules/pago-electronico/pago-electronico.component.html b/src/app/modules/pago-electronico/pago-electronico.component.html new file mode 100644 index 0000000..984daf5 --- /dev/null +++ b/src/app/modules/pago-electronico/pago-electronico.component.html @@ -0,0 +1,32 @@ +
+
+
+ +
+
+
+
+
+
+

PAGO ELECTRÓNICO

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