|
@@ -47,11 +47,21 @@
|
|
{{ scope.row.courseName }}({{ scope.row.courseCode }})
|
|
{{ scope.row.courseName }}({{ scope.row.courseCode }})
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="openCollege"
|
|
|
|
+ label="开课学院"
|
|
|
|
+ min-width="160"
|
|
|
|
+ ></el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
prop="paperNumber"
|
|
prop="paperNumber"
|
|
label="试卷编号"
|
|
label="试卷编号"
|
|
min-width="140"
|
|
min-width="140"
|
|
></el-table-column>
|
|
></el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="paperType"
|
|
|
|
+ label="卷型"
|
|
|
|
+ width="80"
|
|
|
|
+ ></el-table-column>
|
|
<el-table-column prop="studentCount" label="参考人数" width="100">
|
|
<el-table-column prop="studentCount" label="参考人数" width="100">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
@@ -91,6 +101,17 @@
|
|
>
|
|
>
|
|
</el-pagination>
|
|
</el-pagination>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="tips-markedness">
|
|
|
|
+ <p>
|
|
|
|
+ 可以点击查看详情按钮进行成绩检查,成绩检查完成后可以在评卷管理菜单结束评卷
|
|
|
|
+ <el-button
|
|
|
|
+ type="text"
|
|
|
|
+ class="btn-primary btn-link ml-2"
|
|
|
|
+ @click="toMarkManage"
|
|
|
|
+ >点击跳转评卷管理</el-button
|
|
|
|
+ >
|
|
|
|
+ </p>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- ScoreCheckDetail -->
|
|
<!-- ScoreCheckDetail -->
|
|
@@ -184,6 +205,9 @@ export default {
|
|
this.curRow = row;
|
|
this.curRow = row;
|
|
this.$refs.ScoreCheckSign.open();
|
|
this.$refs.ScoreCheckSign.open();
|
|
},
|
|
},
|
|
|
|
+ toMarkManage() {
|
|
|
|
+ this.$router.push({ name: "MarkManage" });
|
|
|
|
+ },
|
|
},
|
|
},
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|