diff --git a/src/app/pages/basic-data-service.ts b/src/app/pages/basic-data-service.ts index 50cee09..38477d0 100644 --- a/src/app/pages/basic-data-service.ts +++ b/src/app/pages/basic-data-service.ts @@ -84,7 +84,6 @@ export class BasicDataService { terminalAreaRes, airlineRes ]) => { - console.log('---') this.flightStatus = flightStatusRes.body; this.flightStatus_subject.next(flightStatusRes.body); this.checkin_group = checkinGroupRes.body; diff --git a/src/app/pages/main/detail-tab/detail-tab.component.html b/src/app/pages/main/detail-tab/detail-tab.component.html new file mode 100644 index 0000000..a307a76 --- /dev/null +++ b/src/app/pages/main/detail-tab/detail-tab.component.html @@ -0,0 +1,34 @@ +
+ guarantee-tab works! +
diff --git a/src/app/pages/main/guarantee-tab/guarantee-tab.component.scss b/src/app/pages/main/guarantee-tab/guarantee-tab.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/main/guarantee-tab/guarantee-tab.component.spec.ts b/src/app/pages/main/guarantee-tab/guarantee-tab.component.spec.ts new file mode 100644 index 0000000..939dd2f --- /dev/null +++ b/src/app/pages/main/guarantee-tab/guarantee-tab.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { GuaranteeTabComponent } from './guarantee-tab.component'; + +describe('GuaranteeTabComponent', () => { + let component: GuaranteeTabComponent; + let fixture: ComponentFixture