风险测评小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
426 B

// 报告相关接口
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