APIRequest.js 3.6 KB

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