Commit d78ea1a9 authored by zhangjianqian's avatar zhangjianqian

考试右上角课程名称

parent 3b3e1976
...@@ -182,7 +182,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService ...@@ -182,7 +182,7 @@ public class TTrainCourseServiceImpl implements ITTrainCourseService
* @return * @return
*/ */
@Override @Override
@Transactional @Transactional(rollbackFor = Exception.class)
public Map<String,Object> examination (Long userCourseId,String[] answers){ public Map<String,Object> examination (Long userCourseId,String[] answers){
TTrainUserCourse userCourse = tTrainUserCourseMapper.selectTTrainUserCourseById(userCourseId); TTrainUserCourse userCourse = tTrainUserCourseMapper.selectTTrainUserCourseById(userCourseId);
TTrainCourseTopic topic = new TTrainCourseTopic(); TTrainCourseTopic topic = new TTrainCourseTopic();
......
...@@ -102,6 +102,7 @@ ...@@ -102,6 +102,7 @@
v-if="answerOpen" v-if="answerOpen"
:courseId="courseId" :courseId="courseId"
:userCourseId="userCourseId" :userCourseId="userCourseId"
:courseName="lessonData.courseName"
:visible.sync="answerOpen" :visible.sync="answerOpen"
@jj="jj" @jj="jj"
/> />
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
> >
<div ref="myBody" class="body" v-loading="loading"> <div ref="myBody" class="body" v-loading="loading">
<div class="text"> <div class="text">
<div class="float">炼铁车间炉前工安全生产规范课程</div> <div class="float">{{courseName}}</div>
</div> </div>
<transition name="fade" mode="out-in"> <transition name="fade" mode="out-in">
<div :key="goodJobShow"> <div :key="goodJobShow">
...@@ -92,6 +92,9 @@ export default { ...@@ -92,6 +92,9 @@ export default {
userCourseId: { userCourseId: {
type: [Number, String], type: [Number, String],
}, },
courseName:{
type: [String,String]
},
courseId: { courseId: {
type: [Number, String], type: [Number, String],
}, },
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
v-if="answerOpen" v-if="answerOpen"
:courseId="itemData.courseId" :courseId="itemData.courseId"
:userCourseId="itemData.userCourseId" :userCourseId="itemData.userCourseId"
:courseName = "itemData.courseName"
:visible.sync="answerOpen" :visible.sync="answerOpen"
@jj="jj" @jj="jj"
/> />
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
v-if="answerOpen" v-if="answerOpen"
:courseId="courseId" :courseId="courseId"
:userCourseId="userCourseId" :userCourseId="userCourseId"
:courseName = "courseName"
:visible.sync="answerOpen" :visible.sync="answerOpen"
/> />
</div> </div>
...@@ -41,6 +42,7 @@ export default { ...@@ -41,6 +42,7 @@ export default {
answerOpen: false, answerOpen: false,
courseId: "", courseId: "",
userCourseId: "", userCourseId: "",
courseName:"",
list: [], list: [],
}; };
}, },
...@@ -57,6 +59,7 @@ export default { ...@@ -57,6 +59,7 @@ export default {
examination(e) { examination(e) {
this.courseId = e.courseId; this.courseId = e.courseId;
this.userCourseId = e.userCourseId; this.userCourseId = e.userCourseId;
this.courseName = e.courseName;
// this.answerOpen=true; // this.answerOpen=true;
}, },
}, },
......
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