判断题答案优化

This commit is contained in:
“zouyf” 2025-01-06 16:18:54 +08:00
parent ac03a6ec08
commit 7d1848277e
1 changed files with 6 additions and 1 deletions

View File

@ -328,7 +328,7 @@ export const processList = (row, aloneOption=false) => {
// 处理[答案显示] - 1-正常 0-错误
const answer = workAnswerArr
.map((item) => {
return item === '1' ? '正确' : '错误'
return DICT_TRUE_OR_FALSE.TRUE.includes(item) ? '正确' : DICT_TRUE_OR_FALSE.FALSE.includes(item)?'错误':item;
})
.join('、')
row[i].workanswerFormat = answer
@ -341,3 +341,8 @@ export const processList = (row, aloneOption=false) => {
}
}
}
const DICT_TRUE_OR_FALSE = {
TRUE: ['正确', '对', '√', '1'],
FALSE: ['错误', '错', '×', '0'],
};