index.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /**
  2. * MixinIndex v1.0.0
  3. * @description shopro-mixin-index 1.0.0 shopro全局入口组件
  4. * @Author lidongtony
  5. * @Date 2021-04-18
  6. * @Email lidongtony@qq.com
  7. */
  8. import store from '@/shopro/store'
  9. import share from '@/shopro/share'
  10. import http from '@/shopro/request'
  11. import $platform from '@/shopro/platform'
  12. import {
  13. router
  14. } from '@/shopro/router'
  15. export default {
  16. onLoad(options) {
  17. let that = this;
  18. // 后端拼接的具体page页面 直接进入 (如订阅消息场景下直接跳转)
  19. // #ifdef MP
  20. if (options?.scene) {
  21. let scene = decodeURIComponent(options.scene);
  22. let sceneObj = scene.split('=');
  23. options[sceneObj[0]] = sceneObj[1];
  24. }
  25. // #endif
  26. if (options?.page) {
  27. router.replace({
  28. path: decodeURIComponent(options.page)
  29. })
  30. }
  31. if (options?.custom_id) {
  32. router.replace({
  33. path: '/pages/index/view',
  34. query: {
  35. id: options.custom_id
  36. }
  37. })
  38. }
  39. if (options?.spm) {
  40. let shareParams = share.getShareQuery(options.spm);
  41. // 保存推荐信息
  42. if (shareParams.shareUserId) {
  43. if (store.getters.isLogin) {
  44. http('common.shareAdd', {
  45. spm: options.spm
  46. });
  47. } else {
  48. uni.setStorageSync('spm', options.spm);
  49. }
  50. }
  51. // 跳转分享路径
  52. let page = {};
  53. if (shareParams.page) {
  54. page.path = shareParams.page;
  55. }
  56. if (shareParams.pageId) {
  57. page.query = {
  58. id: shareParams.pageId
  59. }
  60. }
  61. if (page.path) {
  62. router.replace(page);
  63. }
  64. }
  65. },
  66. // #ifdef MP-WEIXIN
  67. onShareAppMessage(res) {
  68. let that = this;
  69. // uni.$emit('ON_WX_SHARE')
  70. let shareInfo = store.getters.shareInfo;
  71. return {
  72. title: shareInfo.title,
  73. path: shareInfo.path,
  74. imageUrl: shareInfo.image,
  75. success(res) {
  76. uni.showToast({
  77. title: '分享成功'
  78. })
  79. },
  80. fail(res) {
  81. uni.showToast({
  82. title: '分享失败',
  83. icon: 'none'
  84. })
  85. },
  86. complete() {}
  87. }
  88. },
  89. onShareTimeline(res) {
  90. let that = this;
  91. let shareInfo = store.getters.shareInfo;
  92. let query = shareInfo.query;
  93. //携带当前页面资源ID参数
  94. let currentPage = getCurrentPages()[getCurrentPages().length - 1];
  95. let options = currentPage.options;
  96. if (JSON.stringify(options) != '{}' && options.id) {
  97. query += `&id=${options.id}`;
  98. }
  99. return {
  100. title: shareInfo.title,
  101. query: query,
  102. imageUrl: shareInfo.image,
  103. success(res) {
  104. uni.showToast({
  105. title: '分享成功'
  106. })
  107. },
  108. fail(res) {
  109. uni.showToast({
  110. title: '分享失败',
  111. icon: 'none'
  112. })
  113. },
  114. complete() {}
  115. }
  116. }
  117. // #endif
  118. }