소스 검색

Merge branch 'develop' of gitadmin/tuoheng_lc into release

tags/v1.1.0^2
gitadmin 1 년 전
부모
커밋
e9fda6f577
1개의 변경된 파일8개의 추가작업 그리고 4개의 파일을 삭제
  1. +8
    -4
      tuoheng-admin/src/main/java/com/tuoheng/admin/service/impl/IndexServiceImpl.java

+ 8
- 4
tuoheng-admin/src/main/java/com/tuoheng/admin/service/impl/IndexServiceImpl.java 파일 보기

@@ -24,6 +24,7 @@ import com.tuoheng.common.config.CommonConfig;
import com.tuoheng.common.utils.HttpUtils;
import com.tuoheng.common.utils.JacksonUtil;
import com.tuoheng.common.utils.JsonResult;
import com.tuoheng.common.utils.StringUtils;
import com.tuoheng.system.utils.ShiroUtils;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.compress.utils.Lists;
@@ -132,11 +133,14 @@ public class IndexServiceImpl implements IndexService {
getQuestionListDto.setEndTime(getQuestionListDto.getEndTime() + " 23:59:59");
}
List<QuestionListDto> questionListDtoList = questionMapper.getIndexQuestion(getQuestionListDto);
questionListDtoList.forEach(it ->{
if(it.getHandlerImage() != null){
it.setHandlerImage(CommonConfig.imageURL + it.getHandlerImage());
for(QuestionListDto questionListDto : questionListDtoList){
String[] imgHanders = questionListDto.getHandlerImage().split(",");
for (int i = 0; i < imgHanders.length; i++) {
imgHanders[i] = CommonConfig.imageURL + imgHanders[i];
}
});
String handerImg = StringUtils.join(imgHanders, ",");
questionListDto.setHandlerImage(handerImg);
}
return questionListDtoList;
}


Loading…
취소
저장