@@ -88,7 +88,7 @@ export default [
component: studentSpecialSettings
},
{
- path: "stageSpecialSettings/:id", //场次特殊设置
+ path: "stageSpecialSettings/:id/:examName/:examTypeName", //场次特殊设置
component: stageSpecialSettings
@@ -534,7 +534,13 @@ export default {
editStageSettings(row) {
this.setSearchParams();
this.$router.push({
- path: "/examwork/stageSpecialSettings/" + row.id
+ path:
+ "/examwork/stageSpecialSettings/" +
+ row.id +
+ "/" +
+ row.name +
+ this.getExamType(row.examType)
});
showExamCourseSettingsDialog(row) {
@@ -96,7 +96,7 @@ import { EXAM_WORK_API } from "@/constants/constants.js";
import { mapState } from "vuex";
export default {
- name: "stageSpecialSettings",
+ name: "StudentSpecialSettings",
data() {
return {
loading: false,