| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <view>
- <!-- #ifndef MP -->
- <cu-custom :bgColor="'bg-'+theme.backgroundColor" :isBack="true"><block slot="content">{{title}}</block></cu-custom>
- <view class="margin-top-xl">
- <!-- #endif -->
- <web-view :src="url" :webview-styles="webviewStyles"></web-view>
- <!-- #ifndef MP -->
- </view>
- <!-- #endif -->
- </view>
- </template>
- <script>
- // #ifndef MP
- const app = getApp();
- // #endif
- export default {
- data() {
- return {
- // #ifndef MP
- theme: app.globalData.theme, //全局颜色变量
- // #endif
- url:"",
- title:'浏览',
- webviewStyles: {
- progress: {
- color: '#FF3333'
- }
- }
- }
- },
- onShow() {
- },
- onLoad: function(option) {
- this.url = option.url;
- if(option.title){
- this.title = option.title;
- uni.setNavigationBarTitle({
- title:option.title
- })
- }
- },
- methods: {
- }
- }
- </script>
- <style>
- </style>
|