Sfoglia il codice sorgente

removed unwanted imports and pages

master
kj1352 4 anni fa
parent
commit
55926623b2
8 ha cambiato i file con 1 aggiunte e 119 eliminazioni
  1. +0
    -4
      src/app/app-routing.module.ts
  2. +0
    -17
      src/app/more/more-routing.module.ts
  3. +0
    -20
      src/app/more/more.module.ts
  4. +0
    -14
      src/app/more/more.page.html
  5. +0
    -0
      src/app/more/more.page.scss
  6. +0
    -24
      src/app/more/more.page.spec.ts
  7. +0
    -15
      src/app/more/more.page.ts
  8. +1
    -25
      src/app/tabs/tabs-routing.module.ts

+ 0
- 4
src/app/app-routing.module.ts Vedi File

@@ -14,10 +14,6 @@ const routes: Routes = [
path: 'live',
loadChildren: () => import('./live/live.module').then( m => m.LivePageModule)
},
{
path: 'more',
loadChildren: () => import('./more/more.module').then( m => m.MorePageModule)
},
{
path: 'home-details',
loadChildren: () => import('./home-details/home-details.module').then( m => m.HomeDetailsPageModule)


+ 0
- 17
src/app/more/more-routing.module.ts Vedi File

@@ -1,17 +0,0 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';

import { MorePage } from './more.page';

const routes: Routes = [
{
path: '',
component: MorePage
}
];

@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class MorePageRoutingModule {}

+ 0
- 20
src/app/more/more.module.ts Vedi File

@@ -1,20 +0,0 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';

import { IonicModule } from '@ionic/angular';

import { MorePageRoutingModule } from './more-routing.module';

import { MorePage } from './more.page';

@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
MorePageRoutingModule
],
declarations: [MorePage]
})
export class MorePageModule {}

+ 0
- 14
src/app/more/more.page.html Vedi File

@@ -1,14 +0,0 @@
<ion-content>
<button [routerLink]="['/booking']">
<ion-icon name="ticket"></ion-icon>
</button>
<button [routerLink]="['/collections']">
<ion-icon name="trophy"></ion-icon>
</button>
<button [routerLink]="['/ar']">
<ion-icon name="camera"></ion-icon>
</button>
<button [routerLink]="['/quiz']">
<ion-icon name="game-controller"></ion-icon>
</button>
</ion-content>

+ 0
- 0
src/app/more/more.page.scss Vedi File


+ 0
- 24
src/app/more/more.page.spec.ts Vedi File

@@ -1,24 +0,0 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';

import { MorePage } from './more.page';

describe('MorePage', () => {
let component: MorePage;
let fixture: ComponentFixture<MorePage>;

beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ MorePage ],
imports: [IonicModule.forRoot()]
}).compileComponents();

fixture = TestBed.createComponent(MorePage);
component = fixture.componentInstance;
fixture.detectChanges();
}));

it('should create', () => {
expect(component).toBeTruthy();
});
});

+ 0
- 15
src/app/more/more.page.ts Vedi File

@@ -1,15 +0,0 @@
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-more',
templateUrl: './more.page.html',
styleUrls: ['./more.page.scss'],
})
export class MorePage implements OnInit {

constructor() { }

ngOnInit() {
}

}

+ 1
- 25
src/app/tabs/tabs-routing.module.ts Vedi File

@@ -15,30 +15,6 @@ const routes: Routes = [
path: 'live',
loadChildren: () => import('../live/live.module').then(m => m.LivePageModule)
},
{
path: 'more',
loadChildren: () => import('../more/more.module').then(m => m.MorePageModule)
},
{
path: 'booking',
loadChildren: () => import('../booking/booking.module').then( m => m.BookingPageModule)
},
{
path: 'collections',
loadChildren: () => import('../collections/collections.module').then( m => m.CollectionsPageModule)
},
{
path: 'ar',
loadChildren: () => import('../ar-fan-cam/ar-fan-cam.module').then( m => m.ArFanCamPageModule)
},
{
path: 'quiz',
loadChildren: () => import('../quiz/quiz.module').then( m => m.QuizPageModule)
},
{
path: 'shop',
loadChildren: () => import('../shop/shop.module').then( m => m.ShopPageModule)
},
{
path: 'fan-zone',
loadChildren: () => import('../fan-zone/fan-zone.module').then( m => m.FanZonePageModule)
@@ -47,7 +23,7 @@ const routes: Routes = [
},
{
path: '',
redirectTo: '/tabs/home',
redirectTo: '/tabs/live',
pathMatch: 'full'
}
];


Caricamento…
Annulla
Salva