third.js 949 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import request from '@/sheep/request';
  2. import { baseUrl, apiPath } from '@/sheep/config';
  3. export default {
  4. // 微信相关
  5. wechat: {
  6. // 小程序订阅消息
  7. subscribeTemplate: (params) =>
  8. request({
  9. url: 'third/wechat/subscribeTemplate',
  10. method: 'GET',
  11. params: {
  12. platform: 'miniProgram',
  13. },
  14. custom: {
  15. showError: false,
  16. showLoading: false,
  17. },
  18. }),
  19. // 获取微信小程序码
  20. getWxacode: (path) =>
  21. `${baseUrl}${apiPath}third/wechat/wxacode?platform=miniProgram&payload=${encodeURIComponent(
  22. JSON.stringify({
  23. path,
  24. }),
  25. )}`,
  26. },
  27. // 苹果相关
  28. apple: {
  29. // 第三方登录
  30. login: (data) =>
  31. request({
  32. url: 'third/apple/login',
  33. method: 'POST',
  34. data,
  35. custom: {
  36. showSuccess: true,
  37. loadingMsg: '登陆中',
  38. },
  39. }),
  40. },
  41. };