车辆对接

This commit is contained in:
wangshiming
2021-12-20 17:18:40 +08:00
parent f18f512aac
commit 0a31c9eb4e
33 changed files with 1275 additions and 768 deletions

View File

@ -1,3 +1,4 @@
import { WaybillManagementBulkComponent } from './../components/bulk/bulk.component';
/*
* @Author: your name
* @Date: 2021-12-07 14:52:29
@ -12,7 +13,7 @@ import { BaseService } from 'src/app/shared/services';
@Injectable({
providedIn: 'root'
})
export class SupplyManagementService extends BaseService {
export class WaybillManagementServe extends BaseService {
$api_get_catalogue_member = `/user?_allow_anonymous=true`;
$api_del_driver = ``;
@ -35,6 +36,10 @@ export class SupplyManagementService extends BaseService {
// 根据车牌号查询车辆信息
$api_get_getCarLicenseListByCarNo= `/api/mdc/cuc/carLicenseAudit/operate/getCarLicenseListByCarNo`;
// 大宗确认发车
$api_get_insertBulkStartCarInfo= `/api/sdc/wayBillOperate/insertBulkStartCarInfo`;
constructor(public injector: Injector) {
super(injector)
}