12345678910111213141516171819202122232425262728293031 |
- <template>
- <view>
- <!-- <u-navbar class="navbar-wrap" :is-back="true" :title="title" :background="background" title-color="#ffffff" back-icon-color="#ffffff" /> -->
- <web-view :src="url"></web-view>
- </view>
- </template>
- <script>
- const app = getApp()
- export default {
- data() {
- return {
- background: app.globalData.navbarBackground,
- url:'',
- title:''
- }
- },
- onLoad(params) {
- this.url = decodeURIComponent(params.url)
- this.title = params.title;
- },
- methods: {
- }
- }
- </script>
- <style>
- </style>
|