APIRequest.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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: 1,
  13. }).url(url).data(data).send();
  14. }
  15. //获取课程详情
  16. static getCourseDetails(id) {
  17. const url = httpApiUrl(`wx/course/${id}`);
  18. return getInstance().header({
  19. uid: 1,
  20. }).url(url).data().send();
  21. }
  22. //添加播放记录
  23. static addPlayLogList(data) {
  24. const url = httpApiUrl('wx/playLog');
  25. return getInstance().header({
  26. uid: 1,
  27. }).url(url).data(data).send();
  28. }
  29. //收藏或者取消
  30. static getDetailsFavorites(data) {
  31. const url = httpApiUrl('wx/favorites');
  32. return getInstance().header({
  33. uid: 1,
  34. }).url(url).data(data).method('POST').send();
  35. }
  36. //获取收藏列表
  37. static getFavoritesList(data) {
  38. const url = httpApiUrl('wx/favorites');
  39. return getInstance().header({
  40. uid: 1,
  41. }).url(url).data(data).send();
  42. }
  43. //添加评论
  44. static getDetailsPosts(data) {
  45. const url = httpApiUrl('wx/posts');
  46. return getInstance().header({
  47. uid: 1,
  48. }).url(url).data(data).method('POST').send();
  49. }
  50. //获取评论列表
  51. static getPostsList(data) {
  52. const url = httpApiUrl('wx/posts');
  53. return getInstance().header({
  54. uid: 1,
  55. }).url(url).data(data).send();
  56. }
  57. //获取播放记录
  58. static getPlayLogList(data) {
  59. const url = httpApiUrl('wx/playLog');
  60. return getInstance().header({
  61. uid: 1,
  62. }).url(url).data(data).send();
  63. }
  64. //上传图片到相册
  65. static addPhotoList(data) {
  66. const url = httpApiUrl('wx/photoBox');
  67. return getInstance().header({
  68. uid: 1,
  69. }).url(url).data(data).method('POST').send();
  70. }
  71. //获取相册列表
  72. static getPhotoList(data) {
  73. const url = httpApiUrl('wx/photoBox');
  74. return getInstance().header({
  75. uid: 1,
  76. }).url(url).data(data).send();
  77. }
  78. //删除相册
  79. static removePhotoList(id) {
  80. const url = httpApiUrl(`wx/photoBox/${ id }`);
  81. return getInstance().header({
  82. uid: 1,
  83. }).url(url).method('DELETE').send();
  84. }
  85. //相册设置
  86. static setPhoto(photoBox) {
  87. const url = httpApiUrl(`wx/user/photoBox`);
  88. return getInstance().header({
  89. uid: 1,
  90. }).url(url).data({
  91. photoBox,
  92. }).method('PUT').send();
  93. }
  94. }
  95. export default httpRequestApi;