share.js 1011 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // #ifdef H5
  2. import { getConfigApi } from '../api/auth'
  3. import { USER_TOKEN } from '../constant'
  4. import wxShare from './wxshare'
  5. // #endif
  6. export default async ({ data, failCb, successCb }, type = 'WXSceneSession') => {
  7. // #ifdef H5
  8. const currentUrl = window.location.href.replace('#', 'ericToken')
  9. const { data: wxConfigData } = await getConfigApi({
  10. url: currentUrl,
  11. token: uni.getStorageSync(USER_TOKEN),
  12. })
  13. wxShare.wxRegister(
  14. wxConfigData,
  15. {
  16. title: data.title,
  17. desc: data.desc,
  18. imgUrl: data.imageUrl,
  19. link: data.link,
  20. },
  21. successCb
  22. )
  23. // #endif
  24. // #ifdef APP
  25. uni.share({
  26. provider: 'weixin',
  27. scene: type,
  28. type: 0,
  29. href: data.link,
  30. title: data.title,
  31. summary: data.desc,
  32. imageUrl: data.imageUrl,
  33. success: function (res) {
  34. successCb && typeof successCb === 'function' && successCb(res)
  35. },
  36. fail: function (err) {
  37. failCb && typeof failCb === 'function' && failCb(err)
  38. },
  39. })
  40. // #endif
  41. }