风险测评小程序前端代码仓库
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.
 
 
 

16 lines
268 B

// 报告相关接口
const api = {
// 报告-查询报告列表
queryReportList: {
url: '/report/queryReportList',
method: 'GET',
},
// 报告-查询报告详情
queryReportById: {
url: '/report/queryReportById',
method: 'GET',
},
}
export default api