|
@@ -330,37 +330,47 @@ export default {
|
|
|
},
|
|
|
editExamInfoDialog(row) {
|
|
|
if (row.examType == "ONLINE") {
|
|
|
- this.$router.push({ path: "/index/onlineExam/" + row.id });
|
|
|
+ this.$router.push({ path: "/examwork/onlineExam/" + row.id });
|
|
|
} else if (row.examType == "TRADITION") {
|
|
|
- this.$router.push({ path: "/index/traditionExam/" + row.id });
|
|
|
+ this.$router.push({ path: "/examwork/traditionExam/" + row.id });
|
|
|
} else if (row.examType == "PRACTICE") {
|
|
|
- this.$router.push({ path: "/index/practiceExam/" + row.id });
|
|
|
+ this.$router.push({ path: "/examwork/practiceExam/" + row.id });
|
|
|
} else if (row.examType == "OFFLINE") {
|
|
|
- this.$router.push({ path: "/index/offlineExam/" + row.id });
|
|
|
+ this.$router.push({ path: "/examwork/offlineExam/" + row.id });
|
|
|
} else if (row.examType == "PRINT_EXAM") {
|
|
|
- this.$router.push({ path: "/index/printExam/" + row.id });
|
|
|
+ this.$router.push({ path: "/examwork/printExam/" + row.id });
|
|
|
}
|
|
|
},
|
|
|
showExamCourseSettingsDialog(row) {
|
|
|
- this.$router.push({ path: "/index/examCourseSettings/" + row.id });
|
|
|
+ this.$router.push({ path: "/examwork/examCourseSettings/" + row.id });
|
|
|
},
|
|
|
showExamOrgSettingsDialog(row) {
|
|
|
- this.$router.push({ path: "/index/examOrgSettings/" + row.id });
|
|
|
+ this.$router.push({ path: "/examwork/examOrgSettings/" + row.id });
|
|
|
},
|
|
|
toTradition() {
|
|
|
- this.$router.push({ path: "/index/traditionExam/add" });
|
|
|
+ this.$router.push({
|
|
|
+ path: "/examwork/traditionExam/add"
|
|
|
+ });
|
|
|
},
|
|
|
toOnline() {
|
|
|
- this.$router.push({ path: "/index/onlineExam/add" });
|
|
|
+ this.$router.push({
|
|
|
+ path: "/examwork/onlineExam/add"
|
|
|
+ });
|
|
|
},
|
|
|
toPractice() {
|
|
|
- this.$router.push({ path: "/index/practiceExam/add" });
|
|
|
+ this.$router.push({
|
|
|
+ path: "/examwork/practiceExam/add"
|
|
|
+ });
|
|
|
},
|
|
|
toOffline() {
|
|
|
- this.$router.push({ path: "/index/offlineExam/add" });
|
|
|
+ this.$router.push({
|
|
|
+ path: "/examwork/offlineExam/add"
|
|
|
+ });
|
|
|
},
|
|
|
toPrint() {
|
|
|
- this.$router.push({ path: "/index/printExam/add" });
|
|
|
+ this.$router.push({
|
|
|
+ path: "/examwork/printExam/add"
|
|
|
+ });
|
|
|
},
|
|
|
getExamType(examType) {
|
|
|
for (let tempExamType of this.examTypeList) {
|