report.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import {get,post} from '@/api/index'
  2. export default{
  3. // 获取报告详情
  4. getReportDetail:params=>{
  5. return get('/report/detail',params)
  6. },
  7. // 收藏报告
  8. reportCollect:params=>{
  9. return post('/myreport/collect',params)
  10. },
  11. // 取消收藏报告
  12. reportCollectCancel:params=>{
  13. return post('/myreport/collectCancel',params)
  14. },
  15. // 获取PDF报告详情
  16. getPdfReportDetail:params=>{
  17. return get('/report/pdf/detail',params)
  18. },
  19. // 收藏PDF报告
  20. pdfReportCollect:params=>{
  21. return post('/myreport/pdf/collect',params)
  22. },
  23. // 取消收藏PDF报告
  24. pdfReportCollectCancel:params=>{
  25. return post('/myreport/pdf/collectCancel',params)
  26. },
  27. // 获取推送报告列表
  28. getReportList:params=>{
  29. return get('h5/report/list',params)
  30. },
  31. // 报告首页搜索
  32. getReportSearch:params=>{
  33. return get('h5/report/search',params)
  34. },
  35. // 推送报告详情
  36. getPushReportDetail:params=>{
  37. return get('h5/report/detail',params)
  38. },
  39. // 推送报告品种 chartPermissonId
  40. permissionList:params=>{
  41. return get('h5/chart_perimission/list',params)
  42. },
  43. // 推送报告分类
  44. reportClassifyOpts:params=>{
  45. return get('h5/chart_perimission/classify/tree',params)
  46. },
  47. }