| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <uv-toast ref="toast"></uv-toast>
- <view class="">
- <navbar title="" :size="48" :backtext="$t('back')" color="#fff"></navbar>
- </view>
- <view class="app_content">
- <web-view :src="weburl" :update-title="false" :webview-styles="wvstyles"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- weburl:"",
- usetitle:'',
- wvstyles:{
- height:"100%",
- width:"100%",
- top:"10%"
- },
- }
- },
- onLoad: function (option) {
- this.$nextTick(()=>{
- this.weburl = option.weburl,
- this.usetitle = option.title
- })
-
- },
- methods: {
-
- }
- }
- </script>
- <style scoped>
-
- </style>
|