瑶都万能墙
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

243 lines
4.3 KiB

8 months ago
7 months ago
8 months ago
7 months ago
8 months ago
7 months ago
8 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
8 months ago
7 months ago
8 months ago
  1. import http from './http.js'
  2. let limit = {}
  3. let debounce = {}
  4. const config = {
  5. // 示例
  6. // wxLogin : {url : '/api/wxLogin', method : 'POST',
  7. // auth : false, showLoading : true, loadingTitle : '加载中...',
  8. // limit : 1000
  9. // },
  10. getConfig : {url : '/api/getConfig', method : 'GET', limit : 500},
  11. // 微信登录接口
  12. wxLogin: {
  13. url: '/login/login',
  14. method: 'GET',
  15. limit : 500,
  16. showLoading : true,
  17. },
  18. // 修改个人信息接口
  19. updateInfo: {
  20. url: '/token/updateInfo',
  21. method: 'POST',
  22. auth: true,
  23. limit : 500,
  24. showLoading : true,
  25. },
  26. // 获取个人信息接口
  27. getInfo: {
  28. url: '/token/getInfo',
  29. method: 'GET',
  30. auth: true,
  31. limit : 500,
  32. },
  33. //隐私政策
  34. getPrivacyPolicy: {
  35. url: '/login/getPrivacyPolicy',
  36. method: 'GET',
  37. },
  38. //用户协议
  39. getUserAgreement: {
  40. url: '/login/getUserAgreement',
  41. method: 'GET',
  42. },
  43. // 不需要登录的接口
  44. //获取分类
  45. getClassInfo: {
  46. url: '/city/getClassInfo',
  47. method: 'GET',
  48. },
  49. //获取首页头部信息
  50. getIndexHeaderInfo: {
  51. url: '/city/getIndexHeaderInfo',
  52. method: 'GET',
  53. },
  54. //获取banner列表
  55. getBannerList: {
  56. url: '/city/getBannerList',
  57. method: 'GET',
  58. },
  59. //获取分类类型列表
  60. getClassifyList: {
  61. url: '/city/getClassifyList',
  62. method: 'GET',
  63. },
  64. //获取工作信息列表
  65. getJobPage: {
  66. url: '/city/getJobPage',
  67. method: 'GET',
  68. },
  69. //获取工作详情
  70. getJobDetail: {
  71. url: '/city/getJobDetail',
  72. method: 'GET',
  73. },
  74. //根据分类获取租房信息列表
  75. getRentPage: {
  76. url: '/city/getRentPage',
  77. method: 'GET',
  78. },
  79. //获取租房详情
  80. getRentDetail: {
  81. url: '/city/getRentDetail',
  82. method: 'GET',
  83. },
  84. //获取动态帖子列表
  85. getPostPage: {
  86. url: '/city/getPostPage',
  87. method: 'GET',
  88. },
  89. //获取帖子详情
  90. getPostDetail: {
  91. url: '/city/getPostDetail',
  92. method: 'GET',
  93. },
  94. //获取活动列表信息
  95. getActivityPage: {
  96. url: '/city/getActivityPage',
  97. method: 'GET',
  98. },
  99. //获取活动详情
  100. getActivityDetail: {
  101. url: '/city/getActivityDetail',
  102. method: 'GET',
  103. },
  104. //根据分类获取门店信息列表(美食)
  105. getStorePage: {
  106. url: '/city/getStorePage',
  107. method: 'GET',
  108. },
  109. //发布按钮列表
  110. getPublishList: {
  111. url: '/city/getPublishList',
  112. method: 'GET',
  113. },
  114. //获取城市列表服务区域
  115. getCityList: {
  116. url: '/city/getCityList',
  117. method: 'GET',
  118. },
  119. //获取景点列表带分页
  120. getScenicPage: {
  121. url: '/city/getScenicPage',
  122. method: 'GET',
  123. },
  124. //发布帖子\动态
  125. publishPost: {
  126. url: '/token/publishPost',
  127. method: 'POST',
  128. limit : 1000,
  129. auth : true,
  130. },
  131. //查询自己发布的动态
  132. getMyPostPage: {
  133. url: '/token/getMyPostPage',
  134. method: 'GET',
  135. auth : true,
  136. },
  137. //删除自己发布的动态
  138. deletePost: {
  139. url: '/token/deletePost',
  140. method: 'POST',
  141. auth : true,
  142. },
  143. //店铺认证
  144. companyAuthentication: {
  145. url: '/token/companyAuthentication',
  146. method: 'POST',
  147. limit : 1000,
  148. auth : true,
  149. },
  150. //个人认证
  151. personalAuthentication: {
  152. url: '/token/personalAuthentication',
  153. method: 'POST',
  154. limit : 1000,
  155. auth : true,
  156. },
  157. }
  158. export function api(key, data, callback, loadingTitle) {
  159. let req = config[key]
  160. if (!req) {
  161. console.error('无效key--------' + key);
  162. return
  163. }
  164. if (typeof callback == 'string') {
  165. loadingTitle = callback
  166. }
  167. if (typeof data == 'function') {
  168. callback = data
  169. data = {}
  170. }
  171. // 接口限流
  172. if (req.limit) {
  173. let storageKey = req.url
  174. let storage = limit[storageKey]
  175. if (storage && new Date().getTime() - storage < req.limit) {
  176. return
  177. }
  178. limit[storageKey] = new Date().getTime()
  179. }
  180. //必须登录
  181. if (req.auth) {
  182. if (!uni.getStorageSync('token')) {
  183. uni.navigateTo({
  184. url: '/pages_order/auth/wxLogin'
  185. })
  186. console.error('需要登录')
  187. return
  188. }
  189. }
  190. // 接口防抖
  191. if(req.debounce){
  192. let storageKey = req.url
  193. let storage = debounce[storageKey]
  194. if (storage) {
  195. clearTimeout(storage)
  196. }
  197. debounce[storageKey] = setTimeout(() => {
  198. clearTimeout(storage)
  199. delete debounce[storageKey]
  200. http.http(req.url, data, callback, req.method,
  201. loadingTitle || req.showLoading, loadingTitle || req.loadingTitle)
  202. }, req.debounce)
  203. return
  204. }
  205. http.http(req.url, data, callback, req.method,
  206. loadingTitle || req.showLoading, loadingTitle || req.loadingTitle)
  207. }
  208. export default api