|
@@ -335,7 +335,7 @@ export default {
|
|
}
|
|
}
|
|
if (
|
|
if (
|
|
question.quesOptions.some((option) =>
|
|
question.quesOptions.some((option) =>
|
|
- isAnEmptyRichText(option.body)
|
|
|
|
|
|
+ isAnEmptyRichText(option.optionBody)
|
|
)
|
|
)
|
|
) {
|
|
) {
|
|
qErrInfo.push(`有选择内容为空`);
|
|
qErrInfo.push(`有选择内容为空`);
|
|
@@ -372,7 +372,7 @@ export default {
|
|
}
|
|
}
|
|
if (
|
|
if (
|
|
subq.quesOptions.some((option) =>
|
|
subq.quesOptions.some((option) =>
|
|
- isAnEmptyRichText(option.body)
|
|
|
|
|
|
+ isAnEmptyRichText(option.optionBody)
|
|
)
|
|
)
|
|
) {
|
|
) {
|
|
qErrInfo.push(`有选择内容为空`);
|
|
qErrInfo.push(`有选择内容为空`);
|