equipcomponent.ts 673 B

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