1234567891011121314151617 |
- /**
- * 数据中台专用接口文档
- */
- import httputils from "@/api/httputils";
- const baseApi = "/equip-component4";
- // 查询项目下所有的设备类型 --> 编辑器 添加设备 设备实例范围树
- export function categoryQuery(postParams: any): any {
- return httputils.postJson(`${baseApi}/labsl/category`, postParams);
- }
- // 查询项目下所有的设备类型 --> 编辑器 添加设备 分区类型 列表
- export function typeQuery(postParams: any): any {
- return httputils.postJson(`${baseApi}/labsl/zone/type`, postParams);
- }
- export function equipQuery(postParams: any): any {
- return httputils.postJson(`${baseApi}/planar/equip`, postParams);
- }
|