pref:固定端口号

fix/0714-ch
ch 4 years ago
parent 041e15495d
commit 0508a6d9df

@ -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" : {

@ -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); //如果是页面初始化调用时,需要延时一下
}
}
</script>
Loading…
Cancel
Save