wx.js 862 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. import request from '@/utils/request'
  2. // #ifdef H5
  3. // 微信分享信息
  4. export function share(data) {
  5. return request({
  6. url: '/api/share',
  7. method: 'get',
  8. data
  9. });
  10. }
  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
  38. // 获取微信信息
  39. export function getInfo(data) {
  40. return request({
  41. url: '/api/index/company',
  42. method: 'get',
  43. data
  44. });
  45. }
  46. //
  47. export function getWxconfig(data) {
  48. return request({
  49. url: '/api/index/wxconfig',
  50. method: 'get',
  51. data
  52. });
  53. }