Преглед изворни кода

fix(Student): 修复作业提交时未设置hasSubmitWork标志的问题

当iframe中没有找到作业内容时,需要设置hasSubmitWork为true以避免后续逻辑错误
lsc пре 1 месец
родитељ
комит
d6e66115fd
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      src/views/Student/index.vue

+ 1 - 0
src/views/Student/index.vue

@@ -1815,6 +1815,7 @@ const handleHomeworkSubmit = async () => {
         if (iframeWindow && iframeWindow.exposed_outputs) {
           if (iframeWindow.exposed_outputs.length === 0) {
             message.warning('没有找到作业内容')
+            hasSubmitWork = true
             continue
           }
           console.log('执行iframe中的submitWork方法,参数可变')