Commit f68cc9cf authored by 吴卿华's avatar 吴卿华

Merge remote-tracking branch 'origin/master'

parents 5e922c7c 74a36600
...@@ -119,22 +119,8 @@ ...@@ -119,22 +119,8 @@
</template> </template>
<script> <script>
import {
addQuestion,
checkQuestion,
changeQuestion,
getQuestion,
getLessonById,
} from "@/api/educationPlanExam/lessonsProgram.js";
export default { export default {
name: "AnswerLesson", name: "AnswerLesson",
props: {
courseId: {
type: Number,
},
},
components: {},
data() { data() {
return { return {
form: { form: {
...@@ -153,28 +139,9 @@ ...@@ -153,28 +139,9 @@
}, },
methods: { methods: {
getQuestion() { //设置正确答案
getQuestion({ courseId: this.courseId }).then((res) => {
this.questionNextNum = res.total + 1;
});
},
getLessonById(courseId) {
getLessonById(courseId).then((res) => {
console.log(res);
this.courseName = res.data.courseName;
});
},
addQuestion(data) {
// 如果是修改,就用修改的方法,如果是新增,就用新增的方法
if (this.topicId) {
return changeQuestion({ topicId: this.topicId, ...data });
} else {
return addQuestion({ courseId: this.courseId, ...data });
}
},
rightAnswerClick(index) { rightAnswerClick(index) {
this.answerNum = index; this.answerNum = index;
console.log(index);
}, },
// 删除选项 // 删除选项
removeDomain(question) { removeDomain(question) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment