|
@@ -133,7 +133,11 @@ public class QuestService {
|
|
|
LinkedHashMap tempMap = (LinkedHashMap) answer;
|
|
LinkedHashMap tempMap = (LinkedHashMap) answer;
|
|
|
value = tempMap.get("value").toString();
|
|
value = tempMap.get("value").toString();
|
|
|
if (tempMap.containsKey("supplementary")) {
|
|
if (tempMap.containsKey("supplementary")) {
|
|
|
- value += ": " + tempMap.get("supplementary").toString();
|
|
|
|
|
|
|
+ if (StringUtils.isNotEmpty(value)) {
|
|
|
|
|
+ value += " 补充: " + tempMap.get("supplementary").toString();
|
|
|
|
|
+ }else {
|
|
|
|
|
+ value += tempMap.get("supplementary").toString();
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
} else if (answer instanceof String) {
|
|
} else if (answer instanceof String) {
|
|
|
value = answer.toString();
|
|
value = answer.toString();
|