index.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <div>
  3. <van-popup
  4. v-model="showFlag"
  5. :lock-scroll="false"
  6. position="bottom"
  7. :close-on-click-overlay="false"
  8. @click-overlay="showFlag = false"
  9. style="height: 40%;">
  10. <wx-open-launch-weapp
  11. ref="launchBtn"
  12. :username="accountId"
  13. :path="appPath"
  14. style="position: absolute;left:0;top:0;width: 100%;height: 100%;"
  15. @error="errorHandle">
  16. <script type="text/wxtag-template">
  17. <style>
  18. .jump-btn {
  19. position: absolute;
  20. left: 0;
  21. top: 0;
  22. width: 100%;
  23. height: 100%;
  24. line-height: 100%;
  25. text-align: center;
  26. font-size: 12px;
  27. }
  28. </style>
  29. <div class="jump-btn">打开小程序</div>
  30. </script>
  31. </wx-open-launch-weapp>
  32. </van-popup>
  33. </div>
  34. </template>
  35. <script>
  36. import { Toast, Popup, Dialog } from 'vant'
  37. import { getJumpConfig } from '../marketing/save/api'
  38. import { platform } from '../../utils/platform'
  39. export default {
  40. name: 'index',
  41. components: {
  42. 'van-popup': Popup
  43. },
  44. data () {
  45. return {
  46. showFlag: false,
  47. accountId: 'gh_72a4eb2d4324',
  48. appPath: '',
  49. toast: null
  50. }
  51. },
  52. created () {
  53. this.toast = Toast.loading({
  54. message: '加载中...',
  55. forbidClick: true,
  56. duration: 0
  57. })
  58. const { redirectUrl } = this.$route.query
  59. if (redirectUrl && /http/.test(decodeURIComponent(redirectUrl))) {
  60. this.handleJump({
  61. link_url: decodeURIComponent(redirectUrl)
  62. })
  63. }
  64. },
  65. methods: {
  66. async handleJump (shop) {
  67. const linkUrl = shop.link_url && shop.link_url.split('api/transfer/')
  68. if (!Array.isArray(linkUrl) && linkUrl.length > 1) {
  69. top.location.href = shop.link_url
  70. return
  71. }
  72. try {
  73. const { status, data, msg } = await getJumpConfig(linkUrl[1])
  74. if (status) {
  75. // type 类型:1-h5 2-小程序
  76. const { type, url } = data
  77. console.log(type, url)
  78. if (type === 2 && this.isSupportJumpWXmini()) {
  79. this.toast.clear()
  80. this.showFlag = true
  81. } else {
  82. this.toast.clear()
  83. this.showFlag = true
  84. // top.location.href = url
  85. }
  86. if (platform.isWeixin) {
  87. this.$nextTick(() => {
  88. this.$refs.launchBtn.click()
  89. })
  90. }
  91. } else {
  92. Toast(msg)
  93. }
  94. } catch (e) {}
  95. },
  96. errorHandle (err) {
  97. Dialog.alert({
  98. message: JSON.stringify(err)
  99. }).then(() => {
  100. // on close
  101. })
  102. },
  103. // 判断微信是否支持:微信版本要求为:7.0.12及以上。 系统版本要求为:iOS 10.3及以上、Android 5.0及以上
  104. isSupportJumpWXmini () {
  105. const wechat = navigator.userAgent.match(/MicroMessenger\/([\d\.]+)/i)
  106. let result = false
  107. if (wechat) {
  108. const judgewechat = wechat[1].split('.')
  109. if (judgewechat[0] >= 7) {
  110. if (judgewechat[1] >= 0) {
  111. if (judgewechat[2] >= 12) {
  112. result = true
  113. }
  114. }
  115. }
  116. }
  117. return result
  118. }
  119. }
  120. }
  121. </script>
  122. <style lang="scss" scoped>
  123. </style>