// 报告相关接口
|
|
|
|
const api = {
|
|
// 报告-查询报告列表
|
|
queryReportList: {
|
|
url: '/report/queryReportList',
|
|
method: 'GET',
|
|
},
|
|
// 报告-查询报告详情
|
|
queryReportById: {
|
|
url: '/report/queryReportById',
|
|
method: 'GET',
|
|
},
|
|
// 测评-新增测评报告基本信息
|
|
addReport: {
|
|
url: '/report/addReport',
|
|
method: 'POST',
|
|
auth: true,
|
|
limit : 500,
|
|
showLoading : true,
|
|
},
|
|
}
|
|
|
|
export default api
|