redirectToCETApp.vue 428 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view>
  3. <text>进入回调页面</text>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. onLoad() {
  13. // #ifdef H5
  14. console.log('1回调cityexpressuser')
  15. window.location.href = 'weixin://';
  16. console.log('1回调cityexpressuser')
  17. // #endif
  18. // #ifdef APP-PLUS
  19. plus.runtime.openURL('weixin://');
  20. // #endif
  21. },
  22. methods: {
  23. }
  24. }
  25. </script>
  26. <style>
  27. </style>