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') },