From 15f2ca9b4991270d935c6a2ea29d5245f6c34297 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Tue, 15 Oct 2024 17:00:05 +0800 Subject: [PATCH] fix --- src/pages/allocationReview/list/index.vue | 1 + src/pages/myReview/list/index.vue | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pages/allocationReview/list/index.vue b/src/pages/allocationReview/list/index.vue index c51584c..46fcc5a 100644 --- a/src/pages/allocationReview/list/index.vue +++ b/src/pages/allocationReview/list/index.vue @@ -210,6 +210,7 @@ export default { list.forEach(e => { e.stage = '-' e.seted = e.evaluationId && (e.hasManualScoreType || e.allowManualGrading) // 是否展示评阅时间、评阅阶段等的标识 + e.isTimed = e.resultsDetails ? e.isTimed : 1 e.time = e.seted ? e.isTimed ? e.startTime + ' ~ ' + e.endTime : diff --git a/src/pages/myReview/list/index.vue b/src/pages/myReview/list/index.vue index 7d5c50e..e342604 100644 --- a/src/pages/myReview/list/index.vue +++ b/src/pages/myReview/list/index.vue @@ -47,7 +47,7 @@ @@ -263,7 +263,7 @@ export default { i: 1, url: `${this.$route.path}?${Qs.stringify(this.filter)}&month=${this.month}&page=${this.page}&pageSize=${this.pageSize}` }) - this.$router.push(`records?competitionId=${row.competitionId}&stageId=${row.stageId}&readonly=${row.stage === '已结束' && readonly ? 1 : 0}`) + this.$router.push(`records?competitionId=${row.competitionId}&stageId=${row.stageId}&readonly=${row.stage !== '进行中' && readonly ? 1 : 0}`) }, } };