wx.js 684 B

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