导航栏/菜单栏显示逻辑修改

This commit is contained in:
zhujiyan
2024-08-23 13:19:20 +08:00
parent 976a7708cd
commit d0aaa24f90
17 changed files with 4751 additions and 44 deletions

View File

@@ -0,0 +1,8 @@
import http from "@/api";
export const getStaticTreeData = (data: any) => {
return http.post<Static.planData>(
"http://127.0.0.1:4523/m1/2573730-0-default/plan/static/planData",
data,
{ loading: false }
); // 正常 post json 请求 ==> application/json
};