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);
- }
|