|
@@ -124,9 +124,15 @@
|
|
|
|
|
|
function showAnswerReply(item) {
|
|
|
if (item.type == 1) {
|
|
|
+ if (item.reply == null) {
|
|
|
+ return '未答'
|
|
|
+ }
|
|
|
// 单选题
|
|
|
return getLetterByIndex(item.reply)
|
|
|
} else if (item.type == 2){
|
|
|
+ if (item.reply == null) {
|
|
|
+ return '未答'
|
|
|
+ }
|
|
|
if (item.reply == 1) {
|
|
|
return '正确'
|
|
|
} else {
|