lideyin 4 лет назад
Родитель
Сommit
41f5a31d6d

+ 1 - 1
src/modules/examwork/routes/routes.js

@@ -88,7 +88,7 @@ export default [
         component: studentSpecialSettings
       },
       {
-        path: "stageSpecialSettings/:id", //场次特殊设置
+        path: "stageSpecialSettings/:id/:examName/:examTypeName", //场次特殊设置
         component: stageSpecialSettings
       },
       {

+ 7 - 1
src/modules/examwork/view/examInfo.vue

@@ -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) {

Разница между файлами не показана из-за своего большого размера
+ 608 - 374
src/modules/examwork/view/stageSpecialSettings.vue


+ 1 - 1
src/modules/examwork/view/studentSpecialSettings.vue

@@ -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,

Некоторые файлы не были показаны из-за большого количества измененных файлов