ah_jjzhgd_app/src/api/functions/engineering.ts

22 lines
432 B
TypeScript
Raw Normal View History

2024-04-26 15:36:37 +08:00
import { http } from "@/utils/http";
export interface ApiEngineering {
proName: string;
proBrief: string;
org: string;
proType: string;
planStartTime: string;
planEndTime: string;
jlUnit: string;
sgUnit: string;
}
/**
*
*/
export const getEngineering = (bidCode: string | null) => {
return http({
method: "GET",
url: "/background/app/index/proManagement?bidCode=" + bidCode,
});
};