Commit 12b3a02a authored by 纪泽龙's avatar 纪泽龙

修改题库的Dia内部的属性名开始之前

parent f7b9295f
import request from '@/utils/request'
// 查询题库题目列表
export function listSubject(query) {
return request({
url: '/system/subject/list',
method: 'get',
params: query
})
}
// 查询题库题目详细
export function getSubject(subjectId) {
return request({
url: '/system/subject/' + subjectId,
method: 'get'
})
}
// 新增题库题目
export function addSubject(data) {
return request({
url: '/system/subject',
method: 'post',
data: data
})
}
// 修改题库题目
export function updateSubject(data) {
return request({
url: '/system/subject',
method: 'put',
data: data
})
}
// 删除题库题目
export function delSubject(subjectId) {
return request({
url: '/system/subject/' + subjectId,
method: 'delete'
})
}
// 导出题库题目
export function exportSubject(query) {
return request({
url: '/system/subject/export',
method: 'get',
params: query
})
}
\ No newline at end of file
...@@ -175,7 +175,17 @@ export default { ...@@ -175,7 +175,17 @@ export default {
methods: { methods: {
getQuestion() { getQuestion() {
getQuestion({ courseId: this.courseId }).then((res) => { getQuestion({ courseId: this.courseId }).then((res) => {
this.questionNextNum = res.total + 1; // 如果是修改 就是原来的值,如果不是,就是总数+1
console.log(res)
if (this.topicId) {
res.rows.forEach((item, index) => {
if (item.topicId == this.topicId) {
this.questionNextNum = index+1;
}
});
} else {
this.questionNextNum = res.total + 1;
}
}); });
}, },
getLessonById(courseId) { getLessonById(courseId) {
...@@ -249,7 +259,8 @@ export default { ...@@ -249,7 +259,8 @@ export default {
this.save(3).then((res) => { this.save(3).then((res) => {
if (res) { if (res) {
this.reset(); this.reset();
this.questionNextNum++; // this.questionNextNum++;
this.getQuestion();
} }
}); });
}, },
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-22 10:38:49 * @Date: 2022-09-22 10:38:49
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2022-09-28 17:48:07 * @LastEditTime: 2022-12-17 10:24:41
* @FilePath: /danger-manage-web/src/views/lessonsProgram/components/addLesson.vue * @FilePath: /danger-manage-web/src/views/lessonsProgram/components/addLesson.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
......
...@@ -123,6 +123,7 @@ import { ...@@ -123,6 +123,7 @@ import {
getQuestion, getQuestion,
getLessonById, getLessonById,
} from "@/api/educationPlanExam/lessonsProgram.js"; } from "@/api/educationPlanExam/lessonsProgram.js";
import { addSubject ,getSubject,listSubject,updateSubject} from "@/api/educationPlanExam/subject";
export default { export default {
name: "AnswerLesson", name: "AnswerLesson",
...@@ -156,8 +157,8 @@ export default { ...@@ -156,8 +157,8 @@ export default {
created() { created() {
// 如果存在就是修改 // 如果存在就是修改
if (this.topicId) { if (this.topicId) {
checkQuestion(this.topicId).then((res) => { getSubject(this.topicId).then((res) => {
console.log(res.data); console.log('?',res.data);
const data = res.data; const data = res.data;
this.form = { this.form = {
topicTitle: data.topicTitle, topicTitle: data.topicTitle,
...@@ -174,8 +175,18 @@ export default { ...@@ -174,8 +175,18 @@ export default {
}, },
methods: { methods: {
getQuestion() { getQuestion() {
getQuestion({ courseId: this.courseId }).then((res) => { listSubject({ bankId: this.courseId }).then((res) => {
this.questionNextNum = res.total + 1; console.log(res)
// 如果是修改 就是原来的值,如果不是,就是总数+1
if (this.topicId) {
res.rows.forEach((item, index) => {
if (item.subjectId == this.topicId) {
this.questionNextNum = index+1;
}
});
} else {
this.questionNextNum = res.total + 1;
}
}); });
}, },
getLessonById(courseId) { getLessonById(courseId) {
...@@ -187,9 +198,9 @@ export default { ...@@ -187,9 +198,9 @@ export default {
addQuestion(data) { addQuestion(data) {
// 如果是修改,就用修改的方法,如果是新增,就用新增的方法 // 如果是修改,就用修改的方法,如果是新增,就用新增的方法
if (this.topicId) { if (this.topicId) {
return changeQuestion({ topicId: this.topicId, ...data }); return updateSubject({ subjectId: this.topicId, ...data });
} else { } else {
return addQuestion({ courseId: this.courseId, ...data }); return addSubject({ bankId: this.courseId, ...data });
} }
}, },
rightAnswerClick(index) { rightAnswerClick(index) {
...@@ -249,7 +260,8 @@ export default { ...@@ -249,7 +260,8 @@ export default {
this.save(3).then((res) => { this.save(3).then((res) => {
if (res) { if (res) {
this.reset(); this.reset();
this.questionNextNum++; // this.questionNextNum++;
this.getQuestion();
} }
}); });
}, },
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-22 10:59:44 * @Date: 2022-09-22 10:59:44
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2022-12-16 16:43:06 * @LastEditTime: 2022-12-16 17:35:04
* @FilePath: /danger-manage-web/src/views/lessonsProgram/components/Lession.vue * @FilePath: /danger-manage-web/src/views/lessonsProgram/components/Lession.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
...@@ -91,7 +91,7 @@ import { ...@@ -91,7 +91,7 @@ import {
updateBank, updateBank,
getBank, getBank,
} from "@/api/system/questionBank.js"; } from "@/api/educationPlanExam/questionBank";
// 所有部门 // 所有部门
import { treeselect } from "@/api/system/dept"; import { treeselect } from "@/api/system/dept";
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-22 17:56:05 * @Date: 2022-09-22 17:56:05
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2022-12-16 10:23:13 * @LastEditTime: 2022-12-17 11:06:28
* @FilePath: /danger-manage-web/src/views/lessonsProgram/components/QuestionList.vue * @FilePath: /danger-manage-web/src/views/lessonsProgram/components/QuestionList.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
...@@ -10,11 +10,11 @@ ...@@ -10,11 +10,11 @@
<div ref="myBody" class="add-question flex"> <div ref="myBody" class="add-question flex">
<div class="text flex"> <div class="text flex">
<div class="left"> <div class="left">
目前有<span>{{ questionNum || 0}}</span 目前有<span>{{ questionNum || 0 }}</span
>道题 >道题
<!-- <span class="warn">温馨提示:发布课程前需要进行考试设置</span> --> <!-- <span class="warn">温馨提示:发布课程前需要进行考试设置</span> -->
</div> </div>
<div class="right">{{courseName}}</div> <div class="right">{{ courseName }}</div>
</div> </div>
<div class="table flex" v-loading="loading"> <div class="table flex" v-loading="loading">
<div class="th flex"> <div class="th flex">
...@@ -35,13 +35,13 @@ ...@@ -35,13 +35,13 @@
<div class="right"> <div class="right">
<div> <div>
<el-button <el-button
@click="edit(item.topicId)" @click="edit(item.subjectId)"
icon="el-icon-edit" icon="el-icon-edit"
type="text" type="text"
>修改</el-button >修改</el-button
> >
<el-button <el-button
@click="deleteLesson(item.topicId)" @click="deleteLesson(item.subjectId)"
icon="el-icon-delete" icon="el-icon-delete"
type="text" type="text"
>删除</el-button >删除</el-button
...@@ -85,6 +85,9 @@ import { ...@@ -85,6 +85,9 @@ import {
changeLesson, changeLesson,
getLessonById, getLessonById,
} from "@/api/educationPlanExam/lessonsProgram"; } from "@/api/educationPlanExam/lessonsProgram";
import { listSubject, delSubject } from "@/api/educationPlanExam/subject";
import { getBank } from "@/api/educationPlanExam/questionBank";
export default { export default {
name: "AnswerLesson", name: "AnswerLesson",
props: { props: {
...@@ -101,7 +104,7 @@ export default { ...@@ -101,7 +104,7 @@ export default {
rightNum: 0, rightNum: 0,
questionList: [], questionList: [],
loading: false, loading: false,
courseName:'', courseName: "",
}; };
}, },
// watch: { // watch: {
...@@ -117,7 +120,7 @@ export default { ...@@ -117,7 +120,7 @@ export default {
created() { created() {
console.log("this.courseId", this.courseId); console.log("this.courseId", this.courseId);
if (this.courseId) { if (this.courseId) {
this.getQuestion({ courseId: this.courseId }); this.getQuestion({ bankId: this.courseId });
// 获取只题目正确几题算过关 // 获取只题目正确几题算过关
this.getLessonById(this.courseId); this.getLessonById(this.courseId);
} }
...@@ -130,12 +133,13 @@ export default { ...@@ -130,12 +133,13 @@ export default {
this.$parent.$parent.componentsNumChange(3); this.$parent.$parent.componentsNumChange(3);
}, },
getQuestion(courseId) { getQuestion(courseId) {
return getQuestion(courseId).then((res) => { console.log(courseId);
console.log(res); return listSubject(courseId).then((res) => {
console.log("题库res", res);
this.questionList = res.rows.map((item) => { this.questionList = res.rows.map((item) => {
return { return {
topicId: item.topicId, subjectId: item.subjectId,
topicTitle: item.topicTitle, topicTitle: item.topicTitle,
}; };
}); });
...@@ -144,14 +148,14 @@ export default { ...@@ -144,14 +148,14 @@ export default {
}); });
}, },
getLessonById(courseId) { getLessonById(courseId) {
getLessonById(courseId).then((res) => { getBank(courseId).then((res) => {
console.log(res); // console.log(res);
this.rightNum = res.data.qualifiedNum; // this.rightNum = res.data.qualifiedNum;
this.courseName = res.data.courseName; this.courseName = res.data.bankName;
}); });
}, },
edit(topicId) { edit(subjectId) {
this.$emit("update:topicId", topicId); this.$emit("update:topicId", subjectId);
this.$parent.$parent.componentsNumChange(3); this.$parent.$parent.componentsNumChange(3);
}, },
deleteLesson(topicId) { deleteLesson(topicId) {
...@@ -162,7 +166,7 @@ export default { ...@@ -162,7 +166,7 @@ export default {
}) })
.then(() => { .then(() => {
this.loading = true; this.loading = true;
return deleteQuestion(topicId); return delSubject(topicId);
}) })
.then((res) => { .then((res) => {
if (res.code == 200) { if (res.code == 200) {
...@@ -171,7 +175,7 @@ export default { ...@@ -171,7 +175,7 @@ export default {
type: "success", type: "success",
}); });
} }
return this.getQuestion({ courseId: this.courseId }); return this.getQuestion({ bankId: this.courseId });
}) })
.finally(() => { .finally(() => {
this.loading = false; this.loading = false;
...@@ -187,16 +191,17 @@ export default { ...@@ -187,16 +191,17 @@ export default {
}); });
return; return;
} }
changeLesson({ courseId: this.courseId, qualifiedNum: this.rightNum }).then( changeLesson({
(res) => { courseId: this.courseId,
if (res.code == 200) { qualifiedNum: this.rightNum,
this.$message({ }).then((res) => {
message: "答题合格数修改成功", if (res.code == 200) {
type: "success", this.$message({
}); message: "答题合格数修改成功",
} type: "success",
});
} }
); });
}, },
}, },
}; };
......
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