|
|
@@ -73,7 +73,11 @@ const handleNotKnow = () => {
|
|
|
// emit('notKnow', props.question);
|
|
|
// nextQuestion?.();
|
|
|
// handleSelectNotKnow();
|
|
|
- emit('select', props.question);
|
|
|
+ if (props.isSubQuestion) {
|
|
|
+ emit('select', props.question);
|
|
|
+ } else {
|
|
|
+ changeQuestion();
|
|
|
+ }
|
|
|
}
|
|
|
const handleSelect = (option: Study.QuestionOption) => {
|
|
|
if ([
|