黄何裕
2024-07-30 1995e710dcf70e635c4edaa8173f8b66cd67d499
src/api/platform/work-order.js
@@ -27,6 +27,15 @@
  })
}
// 下发选择工单
export function selectedIdsDistribute(data) {
  return request({
    url: '/work-order/distribute/ids',
    method: 'post',
    data: data
  })
}
// 查询运维工单详细
export function getWorkOrder(id) {
  return request({
@@ -70,6 +79,15 @@
  })
}
// 批量审核工单
export function batchAuditing(data) {
  return request({
    url: '/work-order/batchAuditing',
    method: 'put',
    data: data
  })
}
// 工单运维情况
export function ywCondition(data) {
  return request({
@@ -78,3 +96,27 @@
    data: data
  })
}
// 获取工单运维情况
export function getYwCondition(data) {
  return request({
    url: '/work-order/yw-condition/' + data,
    method: 'get'
  })
}
// 获取工单运维审核记录
export function getYwAuditingList(data) {
  return request({
    url: '/work-order/yw-auditing-list/' + data,
    method: 'get'
  })
}
// 获取工单运维情况记录
export function getYwConditionList(data) {
  return request({
    url: '/work-order/yw-condition-list/' + data,
    method: 'get'
  })
}