lighter 1 year ago
parent
commit
cdb767fbcd
2 changed files with 3 additions and 3 deletions
  1. 1 1
      src/App.vue
  2. 2 2
      src/router/index.js

+ 1 - 1
src/App.vue

@@ -28,7 +28,7 @@ function getScreenSize() {
 {
   store.dispatch({
     type: 'storeScreenSize',
-    windowSize: getScreenSize()
+    screenSize: getScreenSize()
   })
   let localCards = localStorage.getItem('patientCards')
   if (localCards) {

+ 2 - 2
src/router/index.js

@@ -113,13 +113,13 @@ export const constantRoutes = [
     meta: { title: '待缴费列表' },
   },
   {
-    path: '/medinsSettle/:patientId/:hisOrdNum/:patientName/:deptName/:doctorName/:mdtrtId',
+    path: '/medinsSettle/:patientId/:hisOrdNum/:patientName/:deptName/:doctorCode/:doctorName/:mdtrtId/:totalAmt?/:fundPay?/:acctPay?/:selfAmt?',
     name: 'medinsSettle',
     component: () => import('../views/hospital-service/pay-mz-fee/MedInsSettle.vue'),
     meta: { title: '医保结算' },
   },
   {
-    path: '/unPaidDetail/:patientId/:hisOrdNum/:patientName/:deptName/:doctorCode/:doctorName/:totalAmt/:selfAmt/:fundPay?/:acctPay?',
+    path: '/unPaidDetail/:patientId/:hisOrdNum/:patientName/:deptName/:doctorCode/:doctorName/:mdtrtId?/:totalAmt/:selfAmt/:fundPay?/:acctPay?',
     name: 'unPaidDetail',
     component: () => import('../views/hospital-service/pay-mz-fee/UnPaidDetail.vue'),
     meta: { title: '待缴费详情' },