车辆接口更新

This commit is contained in:
wangshiming
2022-01-20 19:45:38 +08:00
parent cb9e56892b
commit f86f4cc801
7 changed files with 130 additions and 49 deletions

View File

@ -1,10 +1,10 @@
/*
* @Author: your name
* @Date: 2021-12-06 20:03:28
* @LastEditTime: 2021-12-06 20:03:29
* @LastEditors: Please set LastEditors
* @LastEditTime : 2022-01-20 19:09:36
* @LastEditors : Shiming
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \tms-obc-web\src\app\routes\order-management\components\bulk\bulk.component.spec.ts
* @FilePath : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\bulk\\bulk.component.spec.ts
*/
/*
* @Author: your name
@ -15,21 +15,21 @@
* @FilePath: \tms-obc-web\src\app\routes\order-management\components\bulk\bulk.component.spec.ts
*/
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { OrderManagementBulkComponent } from './bulk.component';
import { WaybillManagementBulkComponent } from './bulk.component';
describe('OrderManagementBulkComponent', () => {
let component: OrderManagementBulkComponent;
let fixture: ComponentFixture<OrderManagementBulkComponent>;
describe('WaybillManagementBulkComponent', () => {
let component: WaybillManagementBulkComponent;
let fixture: ComponentFixture<WaybillManagementBulkComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ OrderManagementBulkComponent ]
declarations: [ WaybillManagementBulkComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(OrderManagementBulkComponent);
fixture = TestBed.createComponent(WaybillManagementBulkComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});