index.js 548 B

1234567891011121314151617
  1. const {
  2. http
  3. } = uni.$u
  4. // 获取活动商品
  5. export const getActivityDataReq = (params, config = {}) => http.get('/api/getActivityData', params, config)
  6. // 获取小程序指南
  7. export const getUserGuideReq = (params, config = {}) => http.get('/api/common/getUserGuide', params, config)
  8. // 获取关于我们
  9. export const getAboutReq = (params, config = {}) => http.get('/api/getAbout', params, config)
  10. // 获取我的收藏
  11. export const getMyCollectDataReq = (params, config = {}) => http.get('/api/users/getMyCollectData', params, config)