|
@@ -377,7 +377,7 @@
|
|
|
|
|
|
function handleCheckJiexi() {
|
|
|
const qa = activeSt.value ;
|
|
|
- let score = qa.score;
|
|
|
+ let score = qa.userScore;
|
|
|
let reply = '';
|
|
|
let result = '';
|
|
|
let answer = qa.answer;
|
|
@@ -419,7 +419,9 @@
|
|
|
}
|
|
|
if (qa.stTypeId == 3) {
|
|
|
// 判断题
|
|
|
- if (qa.reply == 0) {
|
|
|
+ if (qa.reply == '') {
|
|
|
+ reply = '未答'
|
|
|
+ } else if (qa.reply == 0) {
|
|
|
reply = '错误'
|
|
|
}else if (qa.reply == 1) {
|
|
|
reply = '正确'
|