Blame view

绿纤uni-app/pages/web/web.vue 336 Bytes
29608708   李宇   增加unia-app和html
1
2
  <template>
  	<view>
04f9fdae   李宇   最新
3
4
  		<!-- https://erp.lvqianmeiye.com/ai/ -->
  		<web-view :src="urlnew"></web-view>
29608708   李宇   增加unia-app和html
5
6
7
8
9
10
11
  	</view>
  </template>
  
  <script>
  	export default {
  		data() {
  			return {
04f9fdae   李宇   最新
12
  				urlnew:''
29608708   李宇   增加unia-app和html
13
14
  			}
  		},
04f9fdae   李宇   最新
15
16
17
18
  		onLoad(e) {
  			// encodeURIComponent
  			this.urlnew = decodeURIComponent(e.url)
  		},
29608708   李宇   增加unia-app和html
19
20
21
22
23
24
25
26
27
  		methods: {
  			
  		}
  	}
  </script>
  
  <style>
  
  </style>