历史数据修改优化

This commit is contained in:
zhouyuejun
2019-02-18 17:59:22 +08:00
parent a61cdd7741
commit f947b8451c
33 changed files with 712 additions and 329 deletions
@@ -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();
});
});