浏览代码

医院评审

zdl 1 年之前
父节点
当前提交
3649700572

+ 18 - 0
src/router/index.js

@@ -363,6 +363,24 @@ export const constantRoutes = [
         component: () => import('@/views/reviewIndex/index'),
         meta: { keepAlive: true },
         hidden: true
+      },
+      {
+        path: '/reviewIndex-caseIndexList',
+        name: 'ReviewIndexCaseIndexList',
+        component: () => import('@/views/allcase/caseIndexList'),
+        hidden: true,
+      },
+      {
+        path: '/reviewIndex-caseViews',
+        name: 'ReviewIndexCaseViews',
+        component: () => import('@/views/allcase/caseViews'),
+        hidden: true
+      },
+      {
+        path: '/reviewIndex-chargeDetails',
+        name: 'ReviewIndexChargeDetails',
+        hidden: true,
+        component: () => import('@/views/data/query/ChargeDetails')
       }
     ]
   },

+ 2 - 0
src/views/allcase/caseIndexList.vue

@@ -192,6 +192,8 @@ export default {
       let path
       if (this.$route.path === '/embedIndex-caseIndexList') {
         path = '/embedIndex-caseViews'
+      } else if (this.$route.path === '/reviewIndex-caseIndexList') {
+        path = '/reviewIndex-caseViews'
       } else {
         path = '/caseViews'
       }

+ 2 - 0
src/views/allcase/contFile/mainHomePage.vue

@@ -1402,6 +1402,8 @@ export default {
         toPath = '/whitelist-chargeDetails';
       } else if (path === '/embedIndex-caseViews') {
         toPath = '/embedIndex-chargeDetails';
+      } else if (path === '/reviewIndex-caseViews') {
+        toPath = '/reviewIndex-chargeDetails';
       } else {
         toPath = '/ChargeDetails';
       }

+ 2 - 0
src/views/yyps/analysis/components/CaseIndexAnalysisListTable.vue

@@ -87,6 +87,8 @@ import Title from '@/components/Title';
         let path
         if (this.$route.path === '/embedIndex-caseIndexAnalysisList') {
           path = '/embedIndex-caseViews'
+        } else if (this.$route.path === '/reviewIndex-home') {
+          path = '/reviewIndex-caseViews'
         } else {
           path = '/caseViews'
         }

+ 3 - 0
src/views/yyps/index/index.vue

@@ -864,6 +864,9 @@ export default {
       if (this.$route.path === '/embedIndex-home') {
         path = '/embedIndex-caseIndexList'
         this.$router.push({ path, query: { year: this.formInline.year, time, ruleId: Number(`${this.ruleId}`.slice(0, 2)), type: this.judgeNum } });
+      } else if (this.$route.path === '/reviewIndex-home') {
+        path = '/reviewIndex-caseIndexList'
+        this.$router.push({ path, query: { year: this.formInline.year, time, ruleId: Number(`${this.ruleId}`.slice(0, 2)), type: this.judgeNum, from: 'yypsIndex' } });
       } else {
         path = '/caseIndexList'
         this.$router.push({ path, query: { year: this.formInline.year, time, ruleId: Number(`${this.ruleId}`.slice(0, 2)), type: this.judgeNum, from: 'yypsIndex' } });