| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 | import request from '@/utils/request'// 查询【请填写功能名称】列表export function list(query) {  return request({    url: '/core/checkplan/list',    method: 'post',    data: query  })}// 查询【请填写功能名称】详细export function cheHui(id) {  return request({    url: '/core/checkplan/cheHui/' + id,    method: 'get'  })}// 查询【请填写功能名称】详细export function distributeCheHui(id) {  return request({    url: '/core/checkplan/distributeCheHui/' + id,    method: 'get'  })}// 查询【请填写功能名称】详细export function itemfind(id) {  return request({    url: '/core/api/plan/item/find' + id,    method: 'get'  })}// 查询【请填写功能名称】详细export function distribute(query) {  return request({    url: '/core/checkplan/distribute' ,    method: 'post',    data: query  })}export function getPointIds(id) {  return request({    url: '/core/checkplan/getPointIds/' + id,    method: 'get'  })}// 查询【请填写功能名称】详细export function get(id) {  return request({    url: '/core/checkplan/' + id,    method: 'get'  })}// 修改【请填写功能名称】export function update(data) {  return request({    url: '/core/checkplan',    method: 'put',    data: data  })}// 新增【请填写功能名称】export function add(data) {  return request({    url: '/core/checkplan',    method: 'post',    data: data  })}// 删除【请填写功能名称】export function delelte(id) {  return request({    url: '/core/checkplan/' + id,    method: 'delete'  })}export function getDesignateHangshe(planId){  return request({    url: '/core/SafecheckPlanToExecOrg/designatehangshe/' + planId,    method: 'get'  })}
 |