fix:79084

This commit is contained in:
梁琦涛
2023-12-08 18:39:55 +08:00
parent 023b09d419
commit 8451fe4456
@@ -172,7 +172,8 @@ public class LawsCommonServiceImpl implements ILawsCommonService {
// 首页高级检索使用
if(parameterMap.containsKey("home_search_key")){
fieldListSelect = fieldList;
fieldListCondition = fieldList;
fieldListCondition = fieldList.stream().filter(lawsTag -> Objects.equals(YesOrNoEnum.YES.getValue(),
lawsTag.getIsShowSearch().toString())).collect(Collectors.toList());
}else{
// 筛选出查询列表显示的字段(不传id查列表)
fieldListSelect = fieldList.stream().filter(lawsTag -> YesOrNoEnum.YES.getValue()