12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view>
- <web-view :src="web_url"></web-view>
-
- </view>
- </template>
- <script>
- const app = getApp();
- export default {
- data() {
- return {
- web_url: null
- };
- },
- onLoad(params) {
-
-
- var url = decodeURIComponent(params.url) || null;
-
-
-
-
-
-
-
-
-
-
- this.web_url = url;
- },
- onShow() {
-
-
- },
- methods: {}
- };
- </script>
|