ソースを参照

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;
}


読み込み中…
キャンセル
保存