Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zhengyuan-danger-chemistry-manage
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
耿迪迪
zhengyuan-danger-chemistry-manage
Commits
12b3a02a
Commit
12b3a02a
authored
Dec 17, 2022
by
纪泽龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改题库的Dia内部的属性名开始之前
parent
f7b9295f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
248 additions
and
148 deletions
+248
-148
questionBank.js
danger-manage-web/src/api/educationPlanExam/questionBank.js
+0
-0
subject.js
danger-manage-web/src/api/educationPlanExam/subject.js
+52
-0
AddQuestion.vue
...ucationPlanExam/lessonsProgram/components/AddQuestion.vue
+13
-2
Dia.vue
...views/educationPlanExam/lessonsProgram/components/Dia.vue
+1
-1
AddQuestion.vue
...educationPlanExam/questionBank/components/AddQuestion.vue
+19
-7
Lesson.vue
...iews/educationPlanExam/questionBank/components/Lesson.vue
+2
-2
QuestionList.vue
...ducationPlanExam/questionBank/components/QuestionList.vue
+32
-27
index.vue
...ge-web/src/views/educationPlanExam/questionBank/index.vue
+129
-109
No files found.
danger-manage-web/src/api/
syste
m/questionBank.js
→
danger-manage-web/src/api/
educationPlanExa
m/questionBank.js
View file @
12b3a02a
File moved
danger-manage-web/src/api/educationPlanExam/subject.js
0 → 100644
View file @
12b3a02a
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
danger-manage-web/src/views/educationPlanExam/lessonsProgram/components/AddQuestion.vue
View file @
12b3a02a
...
@@ -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
();
}
}
});
});
},
},
...
...
danger-manage-web/src/views/educationPlanExam/lessonsProgram/components/Dia.vue
View file @
12b3a02a
...
@@ -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
-->
-->
...
...
danger-manage-web/src/views/educationPlanExam/questionBank/components/AddQuestion.vue
View file @
12b3a02a
...
@@ -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
({
topic
Id
:
this
.
topicId
,
...
data
});
return
updateSubject
({
subject
Id
:
this
.
topicId
,
...
data
});
}
else
{
}
else
{
return
add
Question
({
course
Id
:
this
.
courseId
,
...
data
});
return
add
Subject
({
bank
Id
:
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
();
}
}
});
});
},
},
...
...
danger-manage-web/src/views/educationPlanExam/questionBank/components/Lesson.vue
View file @
12b3a02a
...
@@ -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 1
6:43:06
* @LastEditTime: 2022-12-16 1
7: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"
;
...
...
danger-manage-web/src/views/educationPlanExam/questionBank/components/QuestionList.vue
View file @
12b3a02a
...
@@ -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-1
6 10:23:13
* @LastEditTime: 2022-12-1
7 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.
topic
Id)"
@
click=
"edit(item.
subject
Id)"
icon=
"el-icon-edit"
icon=
"el-icon-edit"
type=
"text"
type=
"text"
>
修改
</el-button
>
修改
</el-button
>
>
<el-button
<el-button
@
click=
"deleteLesson(item.
topic
Id)"
@
click=
"deleteLesson(item.
subject
Id)"
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
({
course
Id
:
this
.
courseId
});
this
.
getQuestion
({
bank
Id
:
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
.
topic
Id
,
subjectId
:
item
.
subject
Id
,
topicTitle
:
item
.
topicTitle
,
topicTitle
:
item
.
topicTitle
,
};
};
});
});
...
@@ -144,14 +148,14 @@ export default {
...
@@ -144,14 +148,14 @@ export default {
});
});
},
},
getLessonById
(
courseId
)
{
getLessonById
(
courseId
)
{
get
LessonById
(
courseId
).
then
((
res
)
=>
{
get
Bank
(
courseId
).
then
((
res
)
=>
{
console
.
log
(
res
);
//
console.log(res);
this
.
rightNum
=
res
.
data
.
qualifiedNum
;
//
this.rightNum = res.data.qualifiedNum;
this
.
courseName
=
res
.
data
.
course
Name
;
this
.
courseName
=
res
.
data
.
bank
Name
;
});
});
},
},
edit
(
topic
Id
)
{
edit
(
subject
Id
)
{
this
.
$emit
(
"update:topicId"
,
topic
Id
);
this
.
$emit
(
"update:topicId"
,
subject
Id
);
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
del
eteQuestion
(
topicId
);
return
del
Subject
(
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
({
course
Id
:
this
.
courseId
});
return
this
.
getQuestion
({
bank
Id
:
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"
,
});
}
}
);
}
);
},
},
},
},
};
};
...
...
danger-manage-web/src/views/educationPlanExam/questionBank/index.vue
View file @
12b3a02a
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment