审查视图

pages/download/download.vue 401 字节
1  
lihongjuan authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
<template>
	<view class="box">
		<web-view :webview-styles="webviewStyles" :src="url"></web-view>
	</view>
</template>
<script>
	import app from "../../App.vue";
	export default {
		data() {
			return {
				showbanben: false
			}
		},
		onLoad(options) {
			console.log(options)
			this.url=uni.getStorageSync("url");
			console.log(this.url)


		},
		methods: {


		}

	}
</script>

<style>
</style>