Commit 43b147b2 authored by 黄奎's avatar 黄奎

页面修改

parent ac3f3bf3
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
rowsPerPage: 12, rowsPerPage: 12,
CourseId: 0, CourseId: 0,
Title: "", Title: "",
PointName:"",//知识点 PointName: "", //知识点
QuestionTypeId: [], //题型 QuestionTypeId: [], //题型
DifficultyType: [], //难易程度 DifficultyType: [], //难易程度
}, },
...@@ -150,7 +150,9 @@ ...@@ -150,7 +150,9 @@
getDifficultyType() { getDifficultyType() {
queryDifficultyType().then(res => { queryDifficultyType().then(res => {
if (res.Code == 1) { if (res.Code == 1) {
this.questionDifficultyTypeList = res.Data; var tempArray = res.Data;
tempArray.splice(0, 1);
this.questionDifficultyTypeList = tempArray;
} }
}); });
}, },
......
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