diff --git a/src/api/index.js b/src/api/index.js
index 0e3ed0a..72f2258 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -31,7 +31,7 @@ export default {
occupationlabStaff: `/occupationlab/occupationlab/staff/staffList`,
querySchoolByReadAndAppraise: `/nakadai/nakadai/school/querySchoolByReadAndAppraise`,
querySchool: `/nakadai/nakadai/school/querySchool`,
- myClass: `/occupationlab/occupationlab/achievement/myClass`,
+ allClassesInOurSchool: `/occupationlab/occupationlab/achievement/allClassesInOurSchool`,
getDetailedExamScores: `/exam/exam/paper/getDetailedExamScores`,
reviewSettingsList: `/competition/competition/readAndAppraise/reviewSettingsList`,
diff --git a/src/pages/allocationReview/list/index.vue b/src/pages/allocationReview/list/index.vue
index 4a2e2ee..1d106fb 100644
--- a/src/pages/allocationReview/list/index.vue
+++ b/src/pages/allocationReview/list/index.vue
@@ -50,7 +50,7 @@
min-width="120" show-overflow-tooltip>
-
@@ -63,7 +63,7 @@
- 评阅进度
+
修改评阅设置
任务分配
diff --git a/src/pages/allocationReview/records/index.vue b/src/pages/allocationReview/records/index.vue
index ee65631..808c6bb 100644
--- a/src/pages/allocationReview/records/index.vue
+++ b/src/pages/allocationReview/records/index.vue
@@ -206,7 +206,7 @@ export default {
keyWord: keyword || '',
}
provinceId && this.getCity()
- this.$router.push(`records?competitionId=${query.competitionId}&stageId=${query.stageId}`).catch(() => { })
+ this.$router.push(`records?competitionId=${query.competitionId}&stageId=${query.stageId}&assessmentId=${this.assessmentId}`).catch(() => { })
}
if (fromNakadai) {
@@ -287,8 +287,8 @@ export default {
// 获取班级
getClassData () {
- this.$post(this.api.myClass).then(res => {
- this.classList = res.list
+ this.$post(this.api.allClassesInOurSchool).then(res => {
+ this.classList = res.data
}).catch(res => { })
},
diff --git a/src/pages/expert/list/index.vue b/src/pages/expert/list/index.vue
index bda7c71..6e746fa 100644
--- a/src/pages/expert/list/index.vue
+++ b/src/pages/expert/list/index.vue
@@ -297,7 +297,7 @@ export default {
},
// 复制链接
copy (e) {
- clipboard('http://121.37.12.51/reviewCenter', e, '链接已复制!')
+ clipboard(`http://47.97.49.1/reviewCenter`, e, '链接已复制!')
},
// 编辑/查看
async queryExpert (row, isDetail) {
diff --git a/src/pages/myReview/list/index.vue b/src/pages/myReview/list/index.vue
index 6924bf5..6163025 100644
--- a/src/pages/myReview/list/index.vue
+++ b/src/pages/myReview/list/index.vue
@@ -39,7 +39,7 @@
min-width="120" show-overflow-tooltip>
-
diff --git a/src/pages/myReview/records/index.vue b/src/pages/myReview/records/index.vue
index d5d848a..7bb7115 100644
--- a/src/pages/myReview/records/index.vue
+++ b/src/pages/myReview/records/index.vue
@@ -179,7 +179,7 @@ export default {
keyWord: keyword || '',
}
provinceId && this.getCity()
- this.$router.push(`records?competitionId=${query.competitionId}&stageId=${query.stageId}`).catch(() => { })
+ this.$router.push(`records?competitionId=${query.competitionId}&stageId=${query.stageId}&assessmentId=${this.assessmentId}`).catch(() => { })
}
if (fromNakadai) {
@@ -277,8 +277,8 @@ export default {
// 获取班级
getClassData () {
- this.$post(this.api.myClass).then(res => {
- this.classList = res.list
+ this.$post(this.api.allClassesInOurSchool).then(res => {
+ this.classList = res.data
}).catch(res => { })
},
@@ -308,7 +308,7 @@ export default {
},
// 评阅
toReview (row, readonly = 0) {
- window.open(this.$router.resolve(`/theoryReview?id=${row.reportId}&u=${+this.showUserInfo}&m=${this.setup.hasManualScoreType}&c=${this.competitionId}&s=${this.stageId}&r=${readonly ? 1 : 0}`).href)
+ window.open(this.$router.resolve(`/theoryReview?id=${row.reportId}&u=${+this.showUserInfo}&m=${this.setup.hasManualScoreType}&c=${this.competitionId}&a=${this.assessmentId}&s=${this.stageId}&r=${readonly ? 1 : 0}`).href)
},
}
};
diff --git a/src/pages/myReview/theoryReview/index.vue b/src/pages/myReview/theoryReview/index.vue
index 680da80..21e6eb3 100644
--- a/src/pages/myReview/theoryReview/index.vue
+++ b/src/pages/myReview/theoryReview/index.vue
@@ -195,9 +195,11 @@
基本信息
- 考生所在院校:{{ info.realSchool }}
- 团队名称:{{ info.teamName }}
-
+
+ 考生所在院校:{{ info.realSchool }}
+ 团队名称:{{ info.teamName }}
+
+ 考生班级:{{ info.className }}
考生姓名:{{ info.userName }}
考生学号:{{ info.workNumber }}
@@ -222,16 +224,20 @@ import QuesConst from '@/const/ques'
import Util from '@/libs/util'
import _ from 'lodash'
import Decimal from 'decimal.js'
+
+const fromNakadai = localStorage.getItem('reviewFromNakadai')
export default {
components: {
PdfDia
},
data () {
return {
+ fromNakadai,
numToLetter: Util.numToLetter,
arabicToChinese: Util.arabicToChinese,
reportId: this.$route.query.id,
competitionId: this.$route.query.c,
+ assessmentId: this.$route.query.a,
stageId: this.$route.query.s,
showUserInfo: +this.$route.query.u, // 是否展示学生信息
hasManualScoreType: +this.$route.query.m, // 是否有主观题
@@ -568,6 +574,7 @@ export default {
const res = await this.$post(this.api.getTheLabReportIdUpAndDown, {
competitionId: this.competitionId,
stageId: this.stageId,
+ assessmentId: this.assessmentId,
currentReportId: this.reportId
})
this.showNext = !init && !isNext && res.previousReportId ? true : (init ? !!res.nextReportId : !!res.nextNextReportId)
@@ -577,7 +584,7 @@ export default {
const id = res[isNext ? 'nextReportId' : 'previousReportId']
if (id) {
this.reportId = id
- this.$router.push(`/theoryReview?id=${id}&u=${this.showUserInfo}&m=${this.hasManualScoreType}&c=${this.competitionId}&s=${this.stageId}&r=${this.readonly ? 1 : 0}`)
+ this.$router.push(`/theoryReview?id=${id}&u=${this.showUserInfo}&m=${this.hasManualScoreType}&c=${this.competitionId}&s=${this.stageId}&a=${this.assessmentId}&r=${this.readonly ? 1 : 0}`)
this.getData()
}
}