position.js 950 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
import request from '@/utils/request'

// 查询巡检点列表
export function listPosition(query) {
  return request({
    url: '/system/position/list',
    method: 'get',
    params: query
  })
}

// 查询巡检点详细
export function getPosition(patrolId) {
  return request({
    url: '/system/position/' + patrolId,
    method: 'get'
  })
}

// 新增巡检点
export function addPosition(data) {
  return request({
    url: '/system/position',
    method: 'post',
    data: data
  })
}

// 修改巡检点
export function updatePosition(data) {
  return request({
    url: '/system/position',
    method: 'put',
    data: data
  })
}

// 删除巡检点
export function delPosition(patrolId) {
  return request({
    url: '/system/position/' + patrolId,
    method: 'delete'
  })
}

// 导出巡检点
export function exportPosition(query) {
  return request({
    url: '/system/position/export',
    method: 'get',
    params: query
  })
}