| 12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view>
- <text>进入回调页面</text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- // #ifdef H5
- console.log('1回调cityexpressuser')
- window.location.href = 'weixin://';
- console.log('1回调cityexpressuser')
- // #endif
- // #ifdef APP-PLUS
- plus.runtime.openURL('weixin://');
- // #endif
- },
- methods: {
- }
- }
- </script>
- <style>
- </style>
|