| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 | 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 distributeHS(id) {  return request({    url: '/core/checkplan/distributehs/' + 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',    showLoading:true  })}
 |