ah_jjzhgd_app/src/api/introduction.ts

22 lines
430 B
TypeScript
Raw Normal View History

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