h5Template.vue 322 Bytes
Newer Older
宋雄's avatar
宋雄 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<template>
	<view>
		<web-view :src="webUrl">
		</web-view>
	</view>
</template>
<script>
	export default {
		data() {
			return {
				webUrl: ''
			};
		},
		onLoad(options) {
宋雄's avatar
宋雄 committed
15
			this.webUrl = decodeURIComponent(options.webUrl) + '&paySource=miniapp'
宋雄's avatar
宋雄 committed
16 17 18 19 20 21
		}
	}
</script>

<style lang="less">

宋雄's avatar
宋雄 committed
22
</style>