陈少旭 7 months ago
parent
commit
7fb3938427

+ 19 - 0
src/api/fapiao.js View File

@@ -0,0 +1,19 @@
1
+import request from '@/utils/request'
2
+
3
+export function getOrderFapiaoList(params){
4
+  return request({
5
+    url:"/api/order/fapiao/list",
6
+    methods:"get",
7
+    params:params
8
+  })
9
+}
10
+
11
+
12
+export function getFapiaoList(params){
13
+  return request({
14
+    url:"/api/fapiao/list",
15
+    methods:"get",
16
+    params:params
17
+  })
18
+}
19
+

+ 3 - 0
src/router/index.js View File

@@ -37,6 +37,8 @@ import hospitalStation from './modules/hospitalStation'
37 37
 import hospitalCharges from './modules/hospitalCharges'
38 38
 import DepositManagement from './modules/DepositManagement'
39 39
 import hisTool from './modules/hisTool'
40
+import faPiao from './modules/faPiao'
41
+
40 42
 import supply from './modules/supply'
41 43
 
42 44
 import PatientDispensing from './modules/PatientDispensing'
@@ -201,6 +203,7 @@ var _asy_router_map = [
201 203
   hospitalStation,
202 204
   hospitalCharges,
203 205
   hisTool,
206
+  faPiao,
204 207
   integration,
205 208
   basicConfig,
206 209
   supply,

+ 33 - 0
src/router/modules/faPiao.js View File

@@ -0,0 +1,33 @@
1
+import Layout from '@/views/layout/Layout'
2
+
3
+export default {
4
+  path: '/fapiao',
5
+  component: Layout,
6
+  redirect: 'noredirect',
7
+  name: 'fapiao',
8
+  alwaysShow: true,
9
+  meta: {
10
+    title: 'fapiao',
11
+    isChild: true
12
+  },
13
+  children: [
14
+    {
15
+      path: '/fapiao/settle',
16
+      component: () => import('@/xt_pages/fapiao/settleDetail'),
17
+      name: 'settleDetail',
18
+      meta: { title: 'settleDetail', noCache: true }
19
+    },
20
+    {
21
+      path: '/fapiao/patientsettle',
22
+      component: () => import('@/xt_pages/fapiao/patientSettleDetail'),
23
+      name: 'patientSettleDetail',
24
+      meta: { title: 'patientSettleDetail', noCache: true },
25
+    },
26
+    {
27
+      path: '/fapiao/elefapiao',
28
+      component: () => import('@/xt_pages/fapiao/fapiao'),
29
+      name: 'fapiao',
30
+      meta: { title: 'fapiao', noCache: true },
31
+    },
32
+  ]
33
+}

+ 20 - 1
src/router/modules/hisTool.js View File

@@ -195,6 +195,25 @@ export default {
195 195
             title: '药品查询',
196 196
             noCache: true
197 197
           },
198
-        },
198
+        }, {
199
+      path: '/fapiao/settle',
200
+      component: () => import('@/xt_pages/fapiao/settleDetail'),
201
+      name: 'settleDetail',
202
+      meta: { title: 'settleDetail', noCache: true }
203
+    },
204
+    {
205
+      path: '/fapiao/patientsettle',
206
+      component: () => import('@/xt_pages/fapiao/patientSettleDetail'),
207
+      name: 'patientSettleDetail',
208
+      meta: { title: 'patientSettleDetail', noCache: true },
209
+
210
+    },
211
+    {
212
+      path: '/fapiao/elefapiao',
213
+      component: () => import('@/xt_pages/fapiao/fapiao'),
214
+      name: 'fapiao',
215
+      meta: { title: 'fapiao', noCache: true },
216
+
217
+    },
199 218
   ]
200 219
 }

+ 1 - 1
src/views/layout/Layout.vue View File

@@ -132,7 +132,7 @@ export default {
132 132
     }
133 133
   },
134 134
   created(){
135
-    let menzhen = ['hospitalStation',"hospitalRecord","hospitalCharges","DepositManagement","hisTool",'outpatientRegistration','outpatientDoctorStation','outpatientCharges','outpatientPharmacy','outpatientRecord'];
135
+    let menzhen = ['hospitalStation',"hospitalRecord","hospitalCharges","DepositManagement","hisTool","faPiao",'outpatientRegistration','outpatientDoctorStation','outpatientCharges','outpatientPharmacy','outpatientRecord'];
136 136
     let bingli = ['User','createPatient'];
137 137
     let touxi = ['home','workforce', 'dialysisrecord', 'dialysis', 'medicalScheduling', 'signIndex', 'qcd', 'device', 'quality_control','dialysis_index','log_index'];
138 138
     let kucun = ['stockManage','stockDrugs','selfPreparedMedicine','inventoryTransfer','wareHouseManage','otherManagement'];