Commit 1e019206 authored by suhuiguang's avatar suhuiguang

1.企业详情,页签去掉二维码字段不再展示

parent 8a67cf00
...@@ -84,6 +84,11 @@ public class DPSubServiceImpl { ...@@ -84,6 +84,11 @@ public class DPSubServiceImpl {
long s = System.currentTimeMillis(); long s = System.currentTimeMillis();
tab.put("template", template); tab.put("template", template);
this.buildContent(content, tab, param); this.buildContent(content, tab, param);
// 企业且详情页签时 去掉 二维码
if(tab.getString("key").equals("basic") && template.equals("company")){
JSONObject map = content.getJSONObject(tab.getString("key"));
map.put("qrcode", null);
}
long e = System.currentTimeMillis(); long e = System.currentTimeMillis();
log.info("{}tab页处理结束,共耗时:{} 毫秒", tab.get("displayName"), (e - s)); log.info("{}tab页处理结束,共耗时:{} 毫秒", tab.get("displayName"), (e - s));
}); });
......
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