| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | <template>	<view>		<web-view :webview-styles="webviewStyles" :src="url"></web-view>	</view></template><script>	export default {		data() {			return {				url: '',				webviewStyles: {					progress: {						color: '#FF3333'					}				}			};		},		onLoad(e) {			if (e.title) {				uni.setNavigationBarTitle({					title: e.title				});			}			if (e.url) {				if (e.url.indexOf('http://') !== -1) {					this.url = 'http://' + e.url;				} else {					this.url = e.url;				}			} else {				uni.navigateBack();			}		},		onPullDownRefresh: function() {			uni.stopPullDownRefresh(); // 停止刷新		},		methods: {}	};</script><style>	@import '../../../../static/css/index.css';</style>
 |