Browse Source

//bug

release_toaliyun_real
xhxu 3 years ago
parent
commit
526a3caad9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mallinkService/src/main/java/com/iformall/domain/po/WxCampaign.java

+ 2
- 2
mallinkService/src/main/java/com/iformall/domain/po/WxCampaign.java View File

@@ -95,7 +95,7 @@ public class WxCampaign extends TenantEntity {
if(type.equals(EnumCampaignType.PAGEPATH.getCode())) { if(type.equals(EnumCampaignType.PAGEPATH.getCode())) {
return pagePath; return pagePath;
} }
return Constant.mainPageUrl + "?type=bd&bt="+type+"&id="+id;
return Constant.mainPageUrl + "?type=bd&bt="+type+"&id="+id+"&tenantId="+tenantId;
} }


public String getWeappScene() { public String getWeappScene() {
@@ -104,7 +104,7 @@ public class WxCampaign extends TenantEntity {
if(type.equals(EnumCampaignType.PAGEPATH.getCode())) { if(type.equals(EnumCampaignType.PAGEPATH.getCode())) {
return pageScene; return pageScene;
} }
return "t:bd:" + type + ":" +id;
return "t:bd:" + type + ":" + id + ":" + tenantId;
} }


} }

Loading…
Cancel
Save