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

15 lines
268 B

  1. // 报告相关接口
  2. const api = {
  3. // 报告-查询报告列表
  4. queryReportList: {
  5. url: '/report/queryReportList',
  6. method: 'GET',
  7. },
  8. // 报告-查询报告详情
  9. queryReportById: {
  10. url: '/report/queryReportById',
  11. method: 'GET',
  12. },
  13. }
  14. export default api