diff --git a/src/manifest.json b/src/manifest.json index 0c4b672..1e18c2d 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -121,21 +121,7 @@ "base" : "" }, "devServer" : { - "proxy" : { - "/uc/" : { - // "target" : "https://k8s-horse-gateway.mashibing.cn" - "target" : "http://192.168.10.118:8090" - }, - "/mall/" : { - "target" : "http://192.168.10.118:8090" - }, - "/pay/" : { - "target" : "https://k8s-horse-gateway.mashibing.cn" - }, - "/oss/" : { - "target" : "https://k8s-horse-gateway.mashibing.cn" - } - } + "port" : 8080 }, "optimization" : { "treeShaking" : { diff --git a/src/pages/webView.vue b/src/pages/webView.vue index 3402710..cb381d3 100644 --- a/src/pages/webView.vue +++ b/src/pages/webView.vue @@ -17,8 +17,19 @@ export default { } }, onLoad(){ - this.url = decodeURIComponent(this.$Route.query.url) - console.log(); + this.url = decodeURIComponent(this.$Route.query.url); + }, + onReady() { + var currentWebview = this.$scope.$getAppWebview() //此对象相当于html5plus里的plus.webview.currentWebview()。在uni-app里vue页面直接使用plus.webview.currentWebview()无效 + setTimeout(function() { + let wv = currentWebview.children()[0]; + + wv.addEventListener('loaded',function() { + console.log('xxxxx',wv.getURL()) + console.log(wv.getURL()) //获取url + console.log(wv.getTitle()) //获取标题 + }, false); + }, 1000); //如果是页面初始化调用时,需要延时一下 } } \ No newline at end of file