From 414af5db9ee758d7fa1567c9c024d823704991cb Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Thu, 2 Jul 2026 14:53:50 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B7=AF=E7=94=B1=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 2 +- .../visit/qc-check/components/qualityAssurance.vue | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 38ccb36e..b7cc6692 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -129,7 +129,7 @@ export const constantRoutes = [ component: () => import('@/views/none-dicom-show/index') }, { - path: '/noneDicoms', + path: '/none_dicoms', hidden: true, component: () => import('@/views/none-dicoms/index') }, diff --git a/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue b/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue index fcbb6e42..d9406167 100644 --- a/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue +++ b/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue @@ -2504,10 +2504,10 @@ export default { var token = getToken() const routeData = isReading ? this.$router.resolve({ - path: `/noneDicoms?trialId=${trialId}&subjectVisitId=${this.data.Id}&TokenKey=${token}&isReading=1`, + path: `/none_dicoms?trialId=${trialId}&subjectVisitId=${this.data.Id}&TokenKey=${token}&isReading=1`, }) : this.$router.resolve({ - path: `/noneDicoms?trialId=${trialId}&subjectVisitId=${this.data.Id}&TokenKey=${token}&isQcCheck=${this.SecondReviewState > 0 ? 0 : 1}`, + path: `/none_dicoms?trialId=${trialId}&subjectVisitId=${this.data.Id}&TokenKey=${token}&isQcCheck=${this.SecondReviewState > 0 ? 0 : 1}`, }) this.open = window.open(routeData.href, '_blank') }, @@ -2520,7 +2520,7 @@ export default { let trialId = this.$route.query.trialId var token = getToken() const routeData = this.$router.resolve({ - path: `/noneDicoms?trialId=${trialId}&subjectVisitId=${this.data.Id}&studyId=${row.Id}&TokenKey=${token}&isQcCheck=${this.SecondReviewState > 0 ? 0 : 1}`, + path: `/none_dicoms?trialId=${trialId}&subjectVisitId=${this.data.Id}&studyId=${row.Id}&TokenKey=${token}&isQcCheck=${this.SecondReviewState > 0 ? 0 : 1}`, }) this.open = window.open(routeData.href, '_blank') },