index.vue 721 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <OpenWxMiniProgram
  3. :redirectUrl="redirectUrl"
  4. ref="fbtOpenWxMiniProgram"/>
  5. </template>
  6. <script>
  7. import OpenWxMiniProgram from '../common/openWxMiniProgram'
  8. import { Toast } from 'vant'
  9. export default {
  10. name: 'index',
  11. components: {
  12. OpenWxMiniProgram
  13. },
  14. data () {
  15. return {
  16. redirectUrl: ''
  17. }
  18. },
  19. mounted () {
  20. const { redirectUrl } = this.$route.query
  21. if (redirectUrl && /http/.test(decodeURIComponent(redirectUrl))) {
  22. this.redirectUrl = decodeURIComponent(redirectUrl)
  23. this.$nextTick(() => {
  24. this.$refs.fbtOpenWxMiniProgram.init()
  25. })
  26. } else {
  27. Toast('链接出错啦')
  28. }
  29. }
  30. }
  31. </script>
  32. <style lang="scss" scoped>
  33. </style>