pipeEquip.ts 404 B

12345678910111213141516
  1. import { httpGet, httpPUT } from '@/utils/http'
  2. /**
  3. * 设备查询:列表
  4. */
  5. export const getEquipPipeList = (params: any) => {
  6. return httpGet('/pressure2/equip-pipe/page', params)
  7. }
  8. export const getEquipPipeById = (params: any) => {
  9. return httpGet('/pressure2/equip-pipe/get', params)
  10. }
  11. export const updateEquipPipe = (body: any) => {
  12. return httpPUT('/pressure2/equip-pipe/update', body)
  13. }