添加航班tab栏

This commit is contained in:
zhouyuejun
2018-11-26 18:53:23 +08:00
parent b8f0b8f5f1
commit 5470628d7f
25 changed files with 435 additions and 92 deletions
@@ -0,0 +1,3 @@
<p>
guarantee-tab works!
</p>
@@ -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<GuaranteeTabComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ GuaranteeTabComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(GuaranteeTabComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-guarantee-tab',
templateUrl: './guarantee-tab.component.html',
styleUrls: ['./guarantee-tab.component.scss']
})
export class GuaranteeTabComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}