Browse Source

Merge branch 'develop' of gitadmin/tuoheng_lc into release

tags/v1.1.0^2
gitadmin 1 year ago
parent
commit
e9fda6f577
1 changed files with 8 additions and 4 deletions
  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 View File

import com.tuoheng.common.utils.HttpUtils; import com.tuoheng.common.utils.HttpUtils;
import com.tuoheng.common.utils.JacksonUtil; import com.tuoheng.common.utils.JacksonUtil;
import com.tuoheng.common.utils.JsonResult; import com.tuoheng.common.utils.JsonResult;
import com.tuoheng.common.utils.StringUtils;
import com.tuoheng.system.utils.ShiroUtils; import com.tuoheng.system.utils.ShiroUtils;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.commons.compress.utils.Lists; import org.apache.commons.compress.utils.Lists;
getQuestionListDto.setEndTime(getQuestionListDto.getEndTime() + " 23:59:59"); getQuestionListDto.setEndTime(getQuestionListDto.getEndTime() + " 23:59:59");
} }
List<QuestionListDto> questionListDtoList = questionMapper.getIndexQuestion(getQuestionListDto); 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; return questionListDtoList;
} }



Loading…
Cancel
Save