smartReport.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. import http from "@/api/http.js"
  2. //智能研报模块
  3. const apiSmartReport={
  4. //报告列表
  5. reportList:params=>{
  6. return http.get('/smart_report/list',params)
  7. },
  8. //分类数据
  9. classifyList:params=>{
  10. return http.get('/classify/list',params)
  11. },
  12. //删除报告
  13. delReport:params=>{
  14. return http.post('/smart_report/remove',params)
  15. },
  16. //报告推送
  17. reportMsgSend:params=>{
  18. return http.post('/smart_report/send_msg',params)
  19. },
  20. // 作者
  21. reportAuthor:params=>{
  22. return http.get('/report/author',params)
  23. },
  24. //新增报告
  25. reportAdd:params=>{
  26. return http.post('/smart_report/add',params)
  27. },
  28. //编辑报告
  29. reportEdit:params=>{
  30. return http.post('/smart_report/edit',params)
  31. },
  32. //报告详情
  33. reportDetail:params=>{
  34. return http.get('/smart_report/detail',params)
  35. },
  36. //保存报告内容
  37. saveReportContent:params=>{
  38. return http.post('/smart_report/save_content',params)
  39. },
  40. //定时发布报告
  41. prePublishReport:params=>{
  42. return http.post('/smart_report/pre_publish',params)
  43. },
  44. //发布/取消发布报告
  45. publishReport:params=>{
  46. return http.post('/smart_report/publish',params)
  47. },
  48. //编辑状态
  49. markReport:params=>{
  50. return http.post('/smart_report/mark_edit',params)
  51. },
  52. //音频上传
  53. voiceupload:params=>{
  54. return http.post('/smart_report/voice_upload',params)
  55. },
  56. //报告导出图片
  57. getReportImg:params=>{
  58. return http.get('/smart_report/detail_img',params)
  59. }
  60. }
  61. export {
  62. apiSmartReport
  63. }