| 12345678910111213141516 |
- import { httpGet, httpPUT } from '@/utils/http'
- /**
- * 设备查询:列表
- */
- export const getEquipPipeList = (params: any) => {
- return httpGet('/pressure2/equip-pipe/page', params)
- }
- export const getEquipPipeById = (params: any) => {
- return httpGet('/pressure2/equip-pipe/get', params)
- }
- export const updateEquipPipe = (body: any) => {
- return httpPUT('/pressure2/equip-pipe/update', body)
- }
|