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