| 1234567891011121314151617181920212223 |
- <template>
- <view>
- <web-view :src="url" :progress="false"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- url: ''
- };
- },
- onLoad(val) {
- console.log(val)
- this.url = decodeURIComponent(val.url) //解码网址
- },
- }
- </script>
- <style>
- </style>
|