import request from '@/utils/request' // 报告-列表查询 export function getReportList(query) { return request({ url: '/test/performanceReport//list', method: 'get', params: query }) } // 报告-列表删除 export function deleteReport(data) { return request({ url: '/test/performanceReport/delete/' + data, method: 'put', data: data }) } // 报告-详情 export function getReportDetail(query) { return request({ url: '/test/performanceReport/getInfo/' + query, method: 'get', }) }