Commit 7e76aea3 by 陶光胜

导航ext过滤关闭tabbar

parent 7f168320
...@@ -6,6 +6,7 @@ import com.gic.api.base.commons.Page; ...@@ -6,6 +6,7 @@ import com.gic.api.base.commons.Page;
import com.gic.api.base.commons.ServiceResponse; import com.gic.api.base.commons.ServiceResponse;
import com.gic.commons.util.EntityUtil; import com.gic.commons.util.EntityUtil;
import com.gic.enterprise.constant.Constants; import com.gic.enterprise.constant.Constants;
import com.gic.enterprise.constant.LinkTypeEnum;
import com.gic.enterprise.dto.AppletAppDTO; import com.gic.enterprise.dto.AppletAppDTO;
import com.gic.enterprise.dto.CustomGuideDTO; import com.gic.enterprise.dto.CustomGuideDTO;
import com.gic.enterprise.dto.EnterpriseDTO; import com.gic.enterprise.dto.EnterpriseDTO;
...@@ -128,6 +129,7 @@ public class CustomGuideApiServiceImpl implements CustomGuideApiService { ...@@ -128,6 +129,7 @@ public class CustomGuideApiServiceImpl implements CustomGuideApiService {
String iconPath = "/images/footbar/"+themeStr+"/"; String iconPath = "/images/footbar/"+themeStr+"/";
String selectIconPath = "/images/footbar/black-blue/line/foot-icon-01-active.png"; String selectIconPath = "/images/footbar/black-blue/line/foot-icon-01-active.png";
String unIconPath = "/images/footbar/black-blue/line/foot-icon-01.png"; String unIconPath = "/images/footbar/black-blue/line/foot-icon-01.png";
int linkType = 7;
for (int i = 0; i < guideList.size(); i++) { for (int i = 0; i < guideList.size(); i++) {
TabCustomGuide guide = guideList.get(i); TabCustomGuide guide = guideList.get(i);
if(guide.getStatus().intValue() == 1){ if(guide.getStatus().intValue() == 1){
...@@ -142,6 +144,10 @@ public class CustomGuideApiServiceImpl implements CustomGuideApiService { ...@@ -142,6 +144,10 @@ public class CustomGuideApiServiceImpl implements CustomGuideApiService {
} }
listMap.put("selectedIconPath", selectIconPath); listMap.put("selectedIconPath", selectIconPath);
listMap.put("iconPath", unIconPath); listMap.put("iconPath", unIconPath);
JSONObject linkObject = JSON.parseObject(guide.getLink());
if(linkObject.getIntValue("linkType") == linkType){
guide.setCustomPage("pages/customView/customView" + (guide.getSort().intValue()+1));
}
listMap.put("pagePath", guide.getCustomPage()); listMap.put("pagePath", guide.getCustomPage());
pathSet.add(guide.getCustomPage()) ; pathSet.add(guide.getCustomPage()) ;
listMap.put("text", title); listMap.put("text", title);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment