Blame view

lvdao-miniapp/pagesA/payweb/payweb.vue 300 Bytes
2d926347   wesley88   1
1
2
  <template>
  	<view>
ef0c6642   wesley88   1
3
  		<web-view :src="url"></web-view>
2d926347   wesley88   1
4
5
6
7
8
9
10
  	</view>
  </template>
  
  <script>
  	export default {
  		data() {
  			return {
ef0c6642   wesley88   1
11
  				url:''
2d926347   wesley88   1
12
13
  			}
  		},
ef0c6642   wesley88   1
14
15
16
17
18
  		onLoad(e) {
  			console.error(e.url)
  			this.url = unescape(e.url)
  			console.error(this.url)
  		},
2d926347   wesley88   1
19
20
21
22
23
24
25
26
27
  		methods: {
  			
  		}
  	}
  </script>
  
  <style>
  
  </style>