api.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. import { baseUrl } from "./config.js";
  2. import { getHttp, postHttp } from "./request.js";
  3. import { Reports } from "./modules/Reports";
  4. import { activity } from "./modules/activity";
  5. import { Home } from "./modules/Home";
  6. import { User } from "./modules/User";
  7. import { Report } from "./modules/ReportArticle";
  8. export { Reports, activity, Home, User, Report };
  9. /* 上传 */
  10. export const uploadurl = baseUrl + "/resource/image/upload";
  11. // 校验token接口
  12. export const checkToken = (params) => {
  13. return getHttp("/user/check/status", params, 0);
  14. };
  15. /* 个人中心 */
  16. export const Mine = {
  17. /* 我的收藏列表 PageSize CurrentIndex */
  18. getCollect: (params) => {
  19. return getHttp("/user/collect/list", params);
  20. },
  21. /* 用户信息 */
  22. getInfo: (params) => {
  23. return getHttp("/user/detail", params, 0);
  24. },
  25. /* 获取访谈列表 PageSize CurrentIndex*/
  26. getInterview: (params) => {
  27. return getHttp("/user/interview/apply/list", params);
  28. },
  29. /* 获取浏览历史 */
  30. getHistory: (params) => {
  31. return getHttp("/user/browse/history/list", params);
  32. },
  33. /* 优化建议 */
  34. advice: (params) => {
  35. return postHttp("/advice/add", params);
  36. },
  37. };
  38. /* 搜索 */
  39. export const Search = {
  40. /* 获取搜索推荐词 */
  41. getKeys: (params) => {
  42. return getHttp("/config/detail", params, 0);
  43. },
  44. /* 搜索 KeyWord */
  45. getResult: (params) => {
  46. return getHttp("/search/list", params, 0);
  47. },
  48. /* 报告搜索 KeyWord */
  49. getResultReport: (params) => {
  50. return getHttp("/search/report/list", params, 0);
  51. },
  52. /* 报告 KeyWord 素材库*/
  53. getArtAndChartList: (params) => {
  54. return getHttp("/search/artAndChart/listPage", params, 0);
  55. },
  56. };
  57. /* 图标 */
  58. export const Chart = {
  59. /*图表标签分类接口*/
  60. getChartPatg: (params) => {
  61. return getHttp("/chart/patg", params);
  62. },
  63. /*我的收藏接口*/
  64. getChartcollection: (params) => {
  65. return getHttp("/chart/my/collection", params);
  66. },
  67. /*删除我的收藏接口*/
  68. myChartCollect: (params) => {
  69. return postHttp("/chart/collect", params);
  70. },
  71. /*图表的详情*/
  72. myChartDetail: (params) => {
  73. return getHttp("/chart/detail", params);
  74. },
  75. /*图表的详情*/
  76. myChartTop: (params) => {
  77. return postHttp("/chart/top", params);
  78. },
  79. };
  80. /* 研选 */
  81. export const Research = {
  82. /* 近期更新主题列表接口 */
  83. researchNewList: (params) => {
  84. return getHttp("/research/theme/newList", params, 0);
  85. },
  86. /* 用户收藏列表接口 */
  87. researchCollectionList: (params) => {
  88. return getHttp("/research/collectionList", params, 0);
  89. },
  90. /* 主题热度/近期更新更多,列表接口 */
  91. researchHotList: (params) => {
  92. return getHttp("/research/hotList", params, 0);
  93. },
  94. /* KOL榜列表接口 */
  95. researchKolList: (params) => {
  96. return getHttp("/research/kolList", params, 0);
  97. },
  98. /* 研选作者详情接口 */
  99. departmentIdDetail: (params) => {
  100. return getHttp("/research/departmentId/detail", params, 0);
  101. },
  102. /* 研选作者详情接口 */
  103. researchThemeDetail: (params) => {
  104. return getHttp("/research/theme/detail", params, 0);
  105. },
  106. /* 热搜关键词接口 */
  107. researchHotKeyWord: (params) => {
  108. return getHttp("/research/hotKeyWord", params, 0);
  109. },
  110. };
  111. /* 免费送月卡 */
  112. export const FreeButton = {
  113. /*获取是否展示免费试用按钮接口*/
  114. userIsShowFreeButton: (params) => {
  115. return getHttp("/user/isShow/freeButton", params, 0);
  116. },
  117. /* 隐藏当天的按钮接口 */
  118. userFreeButtonUpdate: (params) => {
  119. return postHttp("/user/freeButton/update", params, 0);
  120. },
  121. /*分享的时候判断是不是弘则的手机号*/
  122. userIsShowShare: (params) => {
  123. return getHttp("/user/isShow/share", params, 0);
  124. },
  125. /*获取权限弹窗是否展示免费月卡接口*/
  126. userIsShowAlert: (params) => {
  127. return getHttp("/user/isShow/alert", params, 0);
  128. },
  129. /*获取权限弹窗是否展示免费月卡接口*/
  130. wechatShareImage: (params) => {
  131. return postHttp("/wechat/shareImage", params, 0);
  132. },
  133. };