Commit 0ba73840 by 陶光胜

二维码

parent a64bad1c
......@@ -129,8 +129,8 @@ public class CustomGuideApiServiceImpl implements CustomGuideApiService {
if(StringUtils.isNotBlank(guide.getIcon()) && !"{}".equals(guide.getIcon())){
JSONObject jsonObject = JSON.parseObject(guide.getIcon());
if(jsonObject != null){
selectIconPath = iconPath + jsonObject.getString("type")+ jsonObject.getString("name")+"-active.png";
unIconPath = iconPath + jsonObject.getString("type")+ jsonObject.getString("name")+".png";
selectIconPath = iconPath + jsonObject.getString("type")+ "/"+jsonObject.getString("name")+"-active.png";
unIconPath = iconPath + jsonObject.getString("type")+ "/"+jsonObject.getString("name")+".png";
}
}
listMap.put("selectedIconPath", selectIconPath);
......
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