|
@@ -348,29 +348,19 @@ export default {
|
|
|
this.$router.push({ path: "/examwork/examOrgSettings/" + row.id });
|
|
|
},
|
|
|
toTradition() {
|
|
|
- this.$router.push({
|
|
|
- path: "/examwork/traditionExam/add"
|
|
|
- });
|
|
|
+ this.$router.push({ path: "/examwork/traditionExam/add" });
|
|
|
},
|
|
|
toOnline() {
|
|
|
- this.$router.push({
|
|
|
- path: "/examwork/onlineExam/add"
|
|
|
- });
|
|
|
+ this.$router.push({ path: "/examwork/onlineExam/add" });
|
|
|
},
|
|
|
toPractice() {
|
|
|
- this.$router.push({
|
|
|
- path: "/examwork/practiceExam/add"
|
|
|
- });
|
|
|
+ this.$router.push({ path: "/examwork/practiceExam/add" });
|
|
|
},
|
|
|
toOffline() {
|
|
|
- this.$router.push({
|
|
|
- path: "/examwork/offlineExam/add"
|
|
|
- });
|
|
|
+ this.$router.push({ path: "/examwork/offlineExam/add" });
|
|
|
},
|
|
|
toPrint() {
|
|
|
- this.$router.push({
|
|
|
- path: "/examwork/printExam/add"
|
|
|
- });
|
|
|
+ this.$router.push({ path: "/examwork/printExam/add" });
|
|
|
},
|
|
|
getExamType(examType) {
|
|
|
for (let tempExamType of this.examTypeList) {
|