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

23 lines
426 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. addReport: {
  15. url: '/report/addReport',
  16. method: 'POST',
  17. auth: true,
  18. limit : 500,
  19. showLoading : true,
  20. },
  21. }
  22. export default api