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
e3acf977
Commit
e3acf977
authored
Jan 06, 2023
by
耿迪迪
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
ssh://111.61.77.35:15/gengdidi/zhengyuan-danger-chemistry-manage
parents
53a9cd14
f5170068
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
48 additions
and
33 deletions
+48
-33
TTrainUserCourse.java
.../main/java/com/zehong/system/domain/TTrainUserCourse.java
+1
-1
UserCourseVo.java
...c/main/java/com/zehong/system/domain/vo/UserCourseVo.java
+2
-0
TTrainCourseServiceImpl.java
...m/zehong/system/service/impl/TTrainCourseServiceImpl.java
+1
-1
TTrainCourseMapper.xml
...m/src/main/resources/mapper/system/TTrainCourseMapper.xml
+1
-1
TTrainUserCourseMapper.xml
...c/main/resources/mapper/system/TTrainUserCourseMapper.xml
+1
-1
index.vue
danger-manage-web/src/components/FileUpload/index.vue
+1
-0
AddQuestion.vue
...ucationPlanExam/lessonsProgram/components/AddQuestion.vue
+12
-13
Dia.vue
...views/educationPlanExam/lessonsProgram/components/Dia.vue
+2
-2
Lesson.vue
...ws/educationPlanExam/lessonsProgram/components/Lesson.vue
+6
-2
index.vue
...c/views/educationPlanExam/myLessons/CheckLesson/index.vue
+2
-0
AnswerLesson.vue
...s/educationPlanExam/myLessons/components/AnswerLesson.vue
+4
-1
LearnItem.vue
...iews/educationPlanExam/myLessons/components/LearnItem.vue
+1
-0
index.vue
...anage-web/src/views/educationPlanExam/myLessons/index.vue
+3
-0
index.vue
...manage-web/src/views/educationPlanExam/testStat/index.vue
+1
-0
AddQuestion.vue
...ws/educationPlanExam/textPaper/components/AddQuestion.vue
+10
-11
No files found.
danger-manage-system/src/main/java/com/zehong/system/domain/TTrainUserCourse.java
View file @
e3acf977
...
...
@@ -33,7 +33,7 @@ public class TTrainUserCourse extends BaseEntity
private
Integer
state
;
/** 最后一次考试时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd
HH:mm:ss
"
)
@Excel
(
name
=
"最后一次考试时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
)
private
Date
examinationTime
;
...
...
danger-manage-system/src/main/java/com/zehong/system/domain/vo/UserCourseVo.java
View file @
e3acf977
...
...
@@ -40,4 +40,6 @@ public class UserCourseVo {
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
testEndTime
;
private
Integer
trainState
;
}
danger-manage-system/src/main/java/com/zehong/system/service/impl/TTrainCourseServiceImpl.java
View file @
e3acf977
...
...
@@ -182,7 +182,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
* @return
*/
@Override
@Transactional
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
Map
<
String
,
Object
>
examination
(
Long
userCourseId
,
String
[]
answers
){
TTrainUserCourse
userCourse
=
tTrainUserCourseMapper
.
selectTTrainUserCourseById
(
userCourseId
);
TTrainCourseTopic
topic
=
new
TTrainCourseTopic
();
...
...
danger-manage-system/src/main/resources/mapper/system/TTrainCourseMapper.xml
View file @
e3acf977
...
...
@@ -157,7 +157,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</foreach>
</insert>
<select
id=
"userCourseList"
resultType=
"com.zehong.system.domain.vo.UserCourseVo"
>
SELECT uc.user_course_id AS userCourseId,uc.state ,uc.examination_time AS examinationTime,
SELECT uc.user_course_id AS userCourseId,uc.state ,uc.examination_time AS examinationTime,
uc.train_state AS trainState,
uc.`examination_result` AS examinationResult,uc.`create_time` AS createTime,c.test_start_time as testStartTime,c.test_end_time as testEndTime,
c.`course_name` AS courseName, c.`topic_num` AS topicNum,c.`release_time` AS releaseTime,c.data_kind as dataKind,c.personnel_type as personnelType,
p.`plan_name` AS courseType,c.course_id as courseId,c.qualified_num as qualifiedNum
...
...
danger-manage-system/src/main/resources/mapper/system/TTrainUserCourseMapper.xml
View file @
e3acf977
...
...
@@ -102,7 +102,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
sys.staff_name,
d.dept_name,
train.examination_result,
train.state
train.state
,train.examination_time
FROM
t_train_user_course train
LEFT JOIN sys_user sys ON train.user_id = sys.user_id
...
...
danger-manage-web/src/components/FileUpload/index.vue
View file @
e3acf977
...
...
@@ -230,6 +230,7 @@
},
},
created
()
{
console
.
log
(
this
.
fileArr
);
// this.fileList = this.list;
this
.
addShow
=
this
.
fileArr
.
length
>
0
?
true
:
false
;
},
...
...
danger-manage-web/src/views/educationPlanExam/lessonsProgram/components/AddQuestion.vue
View file @
e3acf977
...
...
@@ -77,7 +77,7 @@
</div>
</el-form-item>
<el-form-item
<
!--
<
el-form-item
class=
"noAttr"
:label=
"`选项$
{form.questions.length + 1}`"
prop=""
...
...
@@ -99,17 +99,16 @@
:class=
"
{ active: answerNum === form.questions.length }"
>
设为正确答案
</div>
</div>
-->
<div
style=
"padding-left:30px"
>
<el-button
size=
"mini"
type=
"primary"
@
click
.
prevent=
"add(addValue)"
>
新增选项
</el-button
>
</div>
<el-button
size=
"mini"
type=
"primary"
@
click
.
prevent=
"add(addValue)"
>
新增
</el-button
>
</div>
<!--
</div>
</div>
</el-form-item>
</el-form-item>
-->
</div>
</el-form>
</div>
...
...
@@ -143,7 +142,7 @@ export default {
return
{
form
:
{
topicTitle
:
""
,
questions
:
[{
value
:
""
},
{
value
:
""
}
,
{
value
:
""
}
],
questions
:
[{
value
:
""
},
{
value
:
""
}],
},
answerNum
:
null
,
addValue
:
""
,
...
...
@@ -176,11 +175,11 @@ export default {
getQuestion
()
{
getQuestion
({
courseId
:
this
.
courseId
}).
then
((
res
)
=>
{
// 如果是修改 就是原来的值,如果不是,就是总数+1
console
.
log
(
res
)
console
.
log
(
res
)
;
if
(
this
.
topicId
)
{
res
.
rows
.
forEach
((
item
,
index
)
=>
{
if
(
item
.
topicId
==
this
.
topicId
)
{
this
.
questionNextNum
=
index
+
1
;
this
.
questionNextNum
=
index
+
1
;
}
});
}
else
{
...
...
danger-manage-web/src/views/educationPlanExam/lessonsProgram/components/Dia.vue
View file @
e3acf977
...
...
@@ -11,14 +11,14 @@
class=
"add-lession"
:title=
"title"
:visible
.
sync=
"visible"
width=
"10
0
0px"
width=
"10
5
0px"
:close-on-click-modal=
"false"
:close-on-press-escape=
"false"
:before-close=
"dialogCancel"
@
closed=
"closeFinished"
destroy-on-close
>
<div
v-if=
"visible"
ref=
"myBody"
class=
"body"
>
<div
v-if=
"visible"
ref=
"myBody"
class=
"body
"
>
<transition
name=
"fade"
mode=
"out-in"
>
<component
:is=
"currentComponent"
...
...
danger-manage-web/src/views/educationPlanExam/lessonsProgram/components/Lesson.vue
View file @
e3acf977
...
...
@@ -204,7 +204,7 @@ export default {
getLessonById
(
this
.
courseId
).
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
const
data
=
res
.
data
;
const
{
courseName
,
courseType
,
courseConent
,
video
,
enclosure
}
=
const
{
courseName
,
courseType
,
courseConent
,
video
,
enclosure
,
duration
,
testStartTime
,
testEndTime
}
=
data
;
this
.
form
=
{
courseName
,
...
...
@@ -212,6 +212,9 @@ export default {
courseConent
,
video
,
enclosure
,
duration
,
testStartTime
,
testEndTime
};
this
.
fileListVideo
=
[
{
...
...
@@ -225,6 +228,7 @@ export default {
url
:
uploadfile
,
},
];
console
.
log
(
"--"
,
this
.
fileListFile
);
}
});
},
...
...
@@ -303,7 +307,7 @@ export default {
.form-wrapper
{
padding-top
:
22px
;
width
:
100%
;
height
:
5
50px
;
height
:
6
50px
;
overflow
:
hidden
;
// padding-bottom: 10px;
margin-bottom
:
20px
;
...
...
danger-manage-web/src/views/educationPlanExam/myLessons/CheckLesson/index.vue
View file @
e3acf977
...
...
@@ -102,6 +102,7 @@
v-if=
"answerOpen"
:courseId=
"courseId"
:userCourseId=
"userCourseId"
:courseName=
"lessonData.courseName"
:visible
.
sync=
"answerOpen"
@
jj=
"jj"
/>
...
...
@@ -219,6 +220,7 @@ export default {
}
},
updateUserCourse
(){
this
.
userlessonData
.
state
=
null
;
changeUserLesson
(
this
.
userlessonData
).
then
(
response
=>
{
if
(
this
.
userlessonData
.
finishDuration
==
this
.
lessonData
.
duration
){
this
.
finish
=
true
;
...
...
danger-manage-web/src/views/educationPlanExam/myLessons/components/AnswerLesson.vue
View file @
e3acf977
...
...
@@ -12,7 +12,7 @@
>
<div
ref=
"myBody"
class=
"body"
v-loading=
"loading"
>
<div
class=
"text"
>
<div
class=
"float"
>
炼铁车间炉前工安全生产规范课程
</div>
<div
class=
"float"
>
{{
courseName
}}
</div>
</div>
<transition
name=
"fade"
mode=
"out-in"
>
<div
:key=
"goodJobShow"
>
...
...
@@ -92,6 +92,9 @@ export default {
userCourseId
:
{
type
:
[
Number
,
String
],
},
courseName
:{
type
:
[
String
,
String
]
},
courseId
:
{
type
:
[
Number
,
String
],
},
...
...
danger-manage-web/src/views/educationPlanExam/myLessons/components/LearnItem.vue
View file @
e3acf977
...
...
@@ -35,6 +35,7 @@
v-if=
"answerOpen"
:courseId=
"itemData.courseId"
:userCourseId=
"itemData.userCourseId"
:courseName =
"itemData.courseName"
:visible
.
sync=
"answerOpen"
@
jj=
"jj"
/>
...
...
danger-manage-web/src/views/educationPlanExam/myLessons/index.vue
View file @
e3acf977
...
...
@@ -18,6 +18,7 @@
v-if=
"answerOpen"
:courseId=
"courseId"
:userCourseId=
"userCourseId"
:courseName =
"courseName"
:visible
.
sync=
"answerOpen"
/>
</div>
...
...
@@ -41,6 +42,7 @@ export default {
answerOpen
:
false
,
courseId
:
""
,
userCourseId
:
""
,
courseName
:
""
,
list
:
[],
};
},
...
...
@@ -57,6 +59,7 @@ export default {
examination
(
e
)
{
this
.
courseId
=
e
.
courseId
;
this
.
userCourseId
=
e
.
userCourseId
;
this
.
courseName
=
e
.
courseName
;
// this.answerOpen=true;
},
},
...
...
danger-manage-web/src/views/educationPlanExam/testStat/index.vue
View file @
e3acf977
...
...
@@ -94,6 +94,7 @@
<el-table-column
label=
"序号"
width=
'100'
align=
"center"
prop=
"detailNum"
/>
<el-table-column
label=
"考试人员"
align=
"center"
prop=
"staffName"
/>
<el-table-column
label=
"所属部门"
align=
"center"
prop=
"deptName"
/>
<el-table-column
label=
"考试时间"
align=
"center"
prop=
"examinationTime"
/>
<el-table-column
label=
"答对个数"
align=
"center"
prop=
"examinationResult"
/>
<el-table-column
label=
"考试结果"
align=
"center"
prop=
"state"
>
<
template
slot-scope=
"scope"
>
...
...
danger-manage-web/src/views/educationPlanExam/textPaper/components/AddQuestion.vue
View file @
e3acf977
...
...
@@ -77,7 +77,7 @@
</div>
</el-form-item>
<el-form-item
<
!--
<
el-form-item
class=
"noAttr"
:label=
"`选项$
{form.questions.length + 1}`"
prop=""
...
...
@@ -99,17 +99,16 @@
:class=
"
{ active: answerNum === form.questions.length }"
>
设为正确答案
</div>
</div>
-->
<div
style=
"padding-left:30px"
>
<el-button
size=
"mini"
type=
"primary"
@
click
.
prevent=
"add(addValue)"
>
新增选项
</el-button
>
</div>
<el-button
size=
"mini"
type=
"primary"
@
click
.
prevent=
"add(addValue)"
>
新增
</el-button
>
</div>
<!--
</div>
</div>
</el-form-item>
</el-form-item>
-->
</div>
</el-form>
</div>
...
...
@@ -143,7 +142,7 @@ export default {
return
{
form
:
{
topicTitle
:
""
,
questions
:
[{
value
:
""
},
{
value
:
""
}
,
{
value
:
""
}
],
questions
:
[{
value
:
""
},
{
value
:
""
}],
},
answerNum
:
null
,
addValue
:
""
,
...
...
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