|
@@ -679,7 +679,14 @@ public class WebpageController extends BaseController {
|
|
|
if (project.getMaxImgUrl() != null && project.getMaxImgUrl().length() <= 0)
|
|
if (project.getMaxImgUrl() != null && project.getMaxImgUrl().length() <= 0)
|
|
|
project.setMaxImgUrl(null);
|
|
project.setMaxImgUrl(null);
|
|
|
if (project.getMinImgUrl() != null && project.getMinImgUrl().length() <= 0)
|
|
if (project.getMinImgUrl() != null && project.getMinImgUrl().length() <= 0)
|
|
|
- project.setMinImgUrl(null);
|
|
|
|
|
|
|
+ project.setMinImgUrl(null);
|
|
|
|
|
+
|
|
|
|
|
+ //去除数据中的标签
|
|
|
|
|
+ if(StringUtils.isNotBlank(project.getIntroduce())){
|
|
|
|
|
+ project.setIntroduce(project.getIntroduce().replaceAll("\\<.*?>", ""));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
modelview.addObject("projects", jtBusinessProjects);
|
|
modelview.addObject("projects", jtBusinessProjects);
|
|
|
List<PolicyResult> policies = (List<PolicyResult>) policyService
|
|
List<PolicyResult> policies = (List<PolicyResult>) policyService
|