wx.js 611 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import request from '@/utils/request'
  2. // 微信分享信息
  3. export function share(data) {
  4. return request({
  5. url: '/api/share',
  6. method: 'get',
  7. data
  8. });
  9. }
  10. // #ifdef H5
  11. //微信配置
  12. export function wechatConfig(data) {
  13. return request({
  14. url: '/api/wechat/config',
  15. method: 'get',
  16. data
  17. });
  18. }
  19. // 微信code地址
  20. export function wechatAuth(data) {
  21. return request({
  22. url: '/api/wechat/auth',
  23. method: 'get',
  24. data
  25. });
  26. }
  27. // #endif
  28. // #ifdef MP-WEIXIN
  29. // 微信code地址
  30. export function wechatMpAuth(data) {
  31. return request({
  32. url: '/api/wechat/mp_auth',
  33. method: 'post',
  34. data
  35. });
  36. }
  37. // #endif