添加基础数据查询路由页面

This commit is contained in:
zhouyuejun
2018-11-12 14:32:28 +08:00
parent f0693c9f42
commit 2be7268fdb
60 changed files with 776 additions and 17 deletions
@@ -0,0 +1,3 @@
<p>
checkin-desk works!
</p>
@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CheckinDeskComponent } from './checkin-desk.component';
describe('CheckinDeskComponent', () => {
let component: CheckinDeskComponent;
let fixture: ComponentFixture<CheckinDeskComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CheckinDeskComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CheckinDeskComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-checkin-desk',
templateUrl: './checkin-desk.component.html',
styleUrls: ['./checkin-desk.component.scss']
})
export class CheckinDeskComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}