Logo white

antissoft / lvqianmeiye_ERP

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • lvqianmeiye_ERP
  • 绿纤uni-app
  • pages
  • web
  • web.vue
  • 最新
    04f9fdae
    李宇 authored
    2026-01-21 13:47:14 +0800  
    Browse Code »
web.vue 336 Bytes
Edit Raw Blame History
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
<template>
	<view>
		<!-- https://erp.lvqianmeiye.com/ai/ -->
		<web-view :src="urlnew"></web-view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				urlnew:''
			}
		},
		onLoad(e) {
			// encodeURIComponent
			this.urlnew = decodeURIComponent(e.url)
		},
		methods: {
			
		}
	}
</script>

<style>

</style>