Procházet zdrojové kódy

修改bug

tags/v1.1.0^2
chenjiandong před 1 rokem
rodič
revize
b872ff525b
1 změnil soubory, kde provedl 7 přidání a 7 odebrání
  1. +7
    -7
      tuoheng-admin/src/main/java/com/tuoheng/admin/service/impl/IndexServiceImpl.java

+ 7
- 7
tuoheng-admin/src/main/java/com/tuoheng/admin/service/impl/IndexServiceImpl.java Zobrazit soubor

@@ -134,15 +134,15 @@ public class IndexServiceImpl implements IndexService {
}
List<QuestionListDto> questionListDtoList = questionMapper.getIndexQuestion(getQuestionListDto);
for(QuestionListDto questionListDto : questionListDtoList){
String[] imgHanders = questionListDto.getHandlerImage().split(",");
for (int i = 0; i < imgHanders.length; i++) {
imgHanders[i] = CommonConfig.imageURL + imgHanders[i];
if(questionListDto.getHandlerImage() != null){
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);
}
String handerImg = StringUtils.join(imgHanders, ",");
questionListDto.setHandlerImage(handerImg);
}
return questionListDtoList;
}


}

Načítá se…
Zrušit
Uložit