APIRequest.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. import { getInstance } from './httpRequest';
  2. import { apiUrl } from './const.js';
  3. //console.log(getInstance().url)
  4. const httpApiUrl = (str) => {
  5. return apiUrl + str;
  6. }
  7. class httpRequestApi {
  8. //课程表首页
  9. static getCourse(data) {
  10. const url = httpApiUrl('wx/course');
  11. return getInstance().header({
  12. uid: wx.getStorageSync('uid'),
  13. }).url(url).data(data).send();
  14. }
  15. //获取看nav切换
  16. static getCategory() {
  17. const url = httpApiUrl('wx/category');
  18. return getInstance().header({
  19. uid: wx.getStorageSync('uid'),
  20. }).url(url).send();
  21. }
  22. //获取推荐课程
  23. static getCategoryRecommend() {
  24. const url = httpApiUrl('wx/course/recommend/top');
  25. return getInstance().header({
  26. uid: wx.getStorageSync('uid'),
  27. }).url(url).send();
  28. }
  29. //获取课程详情
  30. static getCourseDetails(id) {
  31. const url = httpApiUrl(`wx/course/${id}`);
  32. return getInstance().header({
  33. uid: wx.getStorageSync('uid'),
  34. }).url(url).data().send();
  35. }
  36. //添加播放记录
  37. static addPlayLogList(data) {
  38. const url = httpApiUrl('wx/playLog');
  39. return getInstance().header({
  40. uid: wx.getStorageSync('uid'),
  41. }).url(url).data(data).method('POST').send();
  42. }
  43. //收藏或者取消
  44. static getDetailsFavorites(data) {
  45. const url = httpApiUrl('wx/favorites');
  46. return getInstance().header({
  47. uid: wx.getStorageSync('uid'),
  48. }).url(url).data(data).method('POST').send();
  49. }
  50. //获取收藏列表
  51. static getFavoritesList(data) {
  52. const url = httpApiUrl('wx/favorites');
  53. return getInstance().header({
  54. uid: wx.getStorageSync('uid'),
  55. }).url(url).data(data).send();
  56. }
  57. //添加评论
  58. static getDetailsPosts(data) {
  59. const url = httpApiUrl('wx/posts');
  60. return getInstance().header({
  61. uid: wx.getStorageSync('uid'),
  62. }).url(url).data(data).method('POST').send();
  63. }
  64. //获取评论列表
  65. static getPostsList(data) {
  66. const url = httpApiUrl('wx/posts');
  67. return getInstance().header({
  68. uid: wx.getStorageSync('uid'),
  69. }).url(url).data(data).send();
  70. }
  71. //获取播放记录
  72. static getPlayLogList(data) {
  73. const url = httpApiUrl('wx/playLog');
  74. return getInstance().header({
  75. uid: wx.getStorageSync('uid'),
  76. }).url(url).data(data).send();
  77. }
  78. //上传图片到相册
  79. static addPhotoList(data) {
  80. const url = httpApiUrl('wx/photoBox');
  81. return getInstance().header({
  82. uid: wx.getStorageSync('uid'),
  83. }).url(url).data(data).method('POST').send();
  84. }
  85. //获取相册列表
  86. static getPhotoList(data) {
  87. const url = httpApiUrl('wx/photoBox');
  88. return getInstance().header({
  89. uid: wx.getStorageSync('uid'),
  90. }).url(url).data(data).send();
  91. }
  92. //删除相册
  93. static removePhotoList(id) {
  94. const url = httpApiUrl(`wx/photoBox/${ id }`);
  95. return getInstance().header({
  96. uid: wx.getStorageSync('uid'),
  97. }).url(url).method('DELETE').send();
  98. }
  99. //相册设置
  100. static setPhoto(photoBox) {
  101. const url = httpApiUrl(`wx/user/photoBox`);
  102. return getInstance().header({
  103. uid: wx.getStorageSync('uid'),
  104. }).url(url).data({
  105. photoBox,
  106. }).method('PUT').send();
  107. }
  108. //获取用户信息
  109. static getUserInfo() {
  110. const url = httpApiUrl(`wx/user`);
  111. return getInstance().header({
  112. uid: wx.getStorageSync('uid'),
  113. }).url(url).send();
  114. }
  115. //修改用户信息
  116. static setUserInfo(data) {
  117. const url = httpApiUrl(`wx/user`);
  118. return getInstance().header({
  119. uid: wx.getStorageSync('uid'),
  120. }).url(url).data(data).method('PUT').send();
  121. }
  122. }
  123. export default httpRequestApi;