index.js 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. import http from './http.js'
  2. class Ht{
  3. update(data){
  4. return http.setWait(false).post('index.php?act=update',data)
  5. }
  6. //注册
  7. register(data){
  8. return http.setWait(false).post('user.php?act=reg',data)
  9. }
  10. //登录
  11. login(data){
  12. return http.setWait(false).post('user.php?act=userlogin',data)
  13. }
  14. // 搜索好友
  15. searchFriend(data){
  16. return http.get('user.php?act=searchUser',data)
  17. }
  18. setmark(data){
  19. return http.post('user.php?act=setmark',data)
  20. }
  21. //添加好友
  22. applyAddFriend(data){
  23. return http.setWait(false).post('user.php?act=applyAddFriend',data)
  24. }
  25. //处理好友请求
  26. handleFriendApply(data){
  27. return http.setWait(false).post('user.php?act=handleFriendApply',data)
  28. }
  29. //获取新朋友
  30. getFriendApply(data){
  31. return http.setWait(false).post('user.php?act=getFriendApply',data)
  32. }
  33. //获取新朋友数量
  34. getFriendApplyCount(data){
  35. return http.setWait(false).post('user.php?act=getFriendApplyCount',data)
  36. }
  37. //获取用户信息
  38. getUserInfo(data){
  39. return http.setWait(false).post('user.php?act=getUserInfo',data)
  40. }
  41. // 重置登录密码
  42. resetPas(data){
  43. return http.setWait(false).post('user.php?act=resetPassword',data)
  44. }
  45. changePass(data){
  46. return http.setWait(false).post('user.php?act=changePass',data)
  47. }
  48. // 获取我的好友
  49. getMyFriend(data){
  50. return http.setWait(false).get('user.php?act=getMyFriend',data)
  51. }
  52. // 获取我的好友
  53. createGroup(data){
  54. return http.setWait(false).post('group.php?act=createGroup',data)
  55. }
  56. // 获取加入的群
  57. getMyGroup(data){
  58. return http.setWait(false).get('group.php?act=getMyGroup',data)
  59. }
  60. // 加入群聊
  61. joinGroup(data){
  62. return http.get('group.php?act=joinGroup',data)
  63. }
  64. // 发送红包
  65. sendPacket(data){
  66. return http.setWait(false).post('api/v1.redpack/create',data)
  67. }
  68. // 编辑用户信息
  69. changeProfile(data){
  70. return http.setWait(false).post('user.php?act=changeProfile',data)
  71. }
  72. //获取二维码链接
  73. getMyQrcodeCard(data){
  74. return http.get('index.php?act=getMyQrcodeCard',data)
  75. }
  76. //获取群成员
  77. getGroupUsers(data){
  78. return http.setWait(false).post('group.php?act=getGroupUsers',data)
  79. }
  80. setGroupNickname(data){
  81. return http.setWait(false).post('group.php?act=setGroupNickname',data)
  82. }
  83. //获取群信息
  84. getGroupInfo(data){
  85. return http.setWait(false).post('group.php?act=getGroupInfo',data)
  86. }
  87. //获取群二维码
  88. getQrcodeCard(data){
  89. return http.setWait(false).post('group.php?act=getQrcodeCard',data)
  90. }
  91. //修改群名
  92. changeGroupName(data){
  93. return http.setWait(false).post('group.php?act=changeGroupName',data)
  94. }
  95. //群移除用户
  96. removeUserForGroup(data){
  97. return http.setWait(false).post('group.php?act=removeUserForGroup',data)
  98. }
  99. //群邀请用户
  100. inviteIntoGroup(data){
  101. return http.setWait(false).post('group.php?act=inviteIntoGroup',data)
  102. }
  103. //获取验证码
  104. sendCode(data){
  105. return http.setWait(false).post('user.php?act=sendCode',data)
  106. }
  107. //删除好友
  108. deleteFriend(data){
  109. return http.setWait(false).post('user.php?act=deleteFriend',data)
  110. }
  111. //删除群
  112. removeGroup(data){
  113. return http.setWait(false).post('group.php?act=removeGroup',data)
  114. }
  115. //退出群
  116. quitGroup(data){
  117. return http.setWait(false).post('group.php?act=quitGroup',data)
  118. }
  119. //全体成员是否禁言
  120. changeSpeak(data){
  121. return http.setWait(false).post('group.php?act=changeSpeak',data)
  122. }
  123. //获取群红包记录
  124. getPayWays(data){
  125. return http.setWait(false).post('user.php?act=chargeways',data)
  126. }
  127. sendCircle(data){
  128. return http.setWait(false).post('circle.php?act=send',data)
  129. }
  130. getCircleList(data){
  131. return http.setWait(false).post('circle.php?act=list',data)
  132. }
  133. getMyCircle(data){
  134. return http.setWait(false).post('circle.php?act=mycircle',data)
  135. }
  136. setCircleLike(data){
  137. return http.setWait(false).post('circle.php?act=like',data)
  138. }
  139. setCircleComment(data){
  140. return http.setWait(false).post('circle.php?act=comment',data)
  141. }
  142. getCircleMsg(data){
  143. return http.setWait(false).post('circle.php?act=msg',data)
  144. }
  145. getCircleImg(data){
  146. return http.setWait(false).post('user.php?act=circleImg',data)
  147. }
  148. CircleDelete(data){
  149. return http.setWait(false).post('circle.php?act=delete',data)
  150. }
  151. CommentDelete(data){
  152. return http.setWait(false).post('circle.php?act=delete_comment',data)
  153. }
  154. }
  155. export default new Ht()