|
@@ -38,6 +38,7 @@ const map = {
|
|
|
"www.hnjsxt.cn": {
|
|
|
name: "企帮(广州)工程建设咨询服务有限公司",
|
|
|
qrcodeUrl: "hnjsxt_act.png",
|
|
|
+ scheme: "http://",
|
|
|
},
|
|
|
"zsh5.zzyxt.net": {
|
|
|
name: "中山市勘设工程咨询有限公司",
|
|
@@ -92,7 +93,9 @@ export default {
|
|
|
},
|
|
|
toDatail() {
|
|
|
if (this.jump) {
|
|
|
- window.location.href = this.jump;
|
|
|
+ window.location.href = this.tenantInfo.scheme
|
|
|
+ ? this.tenantInfo.scheme
|
|
|
+ : "https://" + this.jump;
|
|
|
return;
|
|
|
}
|
|
|
uni.navigateTo({
|