计划列表

This commit is contained in:
zhujiyan
2024-08-26 20:05:04 +08:00
parent 531ec04f8d
commit a3df1a14a0
20 changed files with 1522 additions and 28 deletions

View File

@@ -0,0 +1,11 @@
import http from "@/api";
//获取计划列表
export const getPlanList = (data: any) => {
return http.post<Static.planData>(
"http://192.168.1.123:4523/m1/2573730-0-default/plan/planList/list",
data,
{ loading: false }
);
};