freight-ts-dy-web/src/services/vehicle.ts

29 lines
347 B
TypeScript
Raw Normal View History

2024-09-06 01:53:51 +00:00
import { http } from "@/utils/http";
// 新增咨询
export const add = (data: any) => {
return http({
method: "POST",
url: "/api/v1/vehicleInfo/add",
data,
});
};
// 新增登记
export const addRegis = (data: any) => {
return http({
method: "POST",
url: "/api/v1/vehicleRegistration/add",
data,
});
};