Files
pqs-9100_client/frontend/src/api/plan/planList.ts

12 lines
270 B
TypeScript
Raw Normal View History

2024-08-26 20:05:04 +08:00
import http from "@/api";
//获取计划列表
export const getPlanList = (data: any) => {
return null;
2024-08-26 20:05:04 +08:00
return http.post<Static.planData>(
"http://192.168.1.123:4523/m1/2573730-0-default/plan/planList/list",
data,
{ loading: false }
);
2024-10-10 17:47:55 +08:00
};
2024-08-26 20:05:04 +08:00