Commit d78ea1a9 authored by zhangjianqian's avatar zhangjianqian

考试右上角课程名称

parent 3b3e1976
......@@ -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();
......
......@@ -102,6 +102,7 @@
v-if="answerOpen"
:courseId="courseId"
:userCourseId="userCourseId"
:courseName="lessonData.courseName"
:visible.sync="answerOpen"
@jj="jj"
/>
......
......@@ -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],
},
......
......@@ -35,6 +35,7 @@
v-if="answerOpen"
:courseId="itemData.courseId"
:userCourseId="itemData.userCourseId"
:courseName = "itemData.courseName"
:visible.sync="answerOpen"
@jj="jj"
/>
......
......@@ -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;
},
},
......
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