| 12345678910111213141516171819202122232425 |
- <template>
- <view class="app-page"><web-view :src="webUrl"></web-view></view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: '',
- webUrl: ''
- };
- },
- onLoad(e) {
- const { title, url } = JSON.parse(e.query.data);
- this.webUrl = url;
- this.fnSetPageTitle(title);
- }
- };
- </script>
- <style scoped>
- .app-page {
- width: 100vw;
- }
- </style>
|