Browse Source

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

yq1 4 weeks ago
parent
commit
797ee1b0b2
3 changed files with 63 additions and 43 deletions
  1. 20 1
      src/api/patient.js
  2. 42 42
      src/router/modules/charging.js
  3. 1 0
      src/xt_pages/charging/charging_cz.vue

+ 20 - 1
src/api/patient.js View File

@@ -1476,4 +1476,23 @@ export function getInspectionByProjectId(params){
1476 1476
 //     method:"get",
1477 1477
 //     params:params
1478 1478
 //   })
1479
-// }
1479
+// }
1480
+
1481
+
1482
+export function getPatientMapList(params){
1483
+
1484
+  return request({
1485
+    url:"/api/patient/getpatientmaplist",
1486
+    method:"get",
1487
+    params:params
1488
+  })
1489
+}
1490
+
1491
+export function savePatentCount(params){
1492
+
1493
+  return request({
1494
+    url:"/api/patient/savepatientcount",
1495
+    method:"get",
1496
+    params:params
1497
+  })
1498
+}

+ 42 - 42
src/router/modules/charging.js View File

@@ -12,47 +12,47 @@ export default {
12 12
     title:'charging',
13 13
     icon: 'statistics'
14 14
   },
15
-  children: [
16
-    {
17
-      path: '/dialysis/charging',
18
-      component: () => import('@/xt_pages/charging/index'),
19
-      name: '计费查询',
20
-      meta: {
21
-        title: '计费查询',
22
-        noCache: true
23
-      }
24
-    },
25
-    {
26
-      path: '/dialysis/charging_cz',
27
-      component: () => import('@/xt_pages/charging/charging_cz'),
28
-      name: '计费充值',
29
-      is_menu: false,
30
-      hidden: true,
31
-      meta: {
32
-        title: '计费充值',
33
-        noCache: true
34
-      }
35
-    },
36
-    {
37
-      path: '/dialysis/chargin_kf',
38
-      component: () => import('@/xt_pages/charging/chargin_kf'),
39
-      name: '计数扣费',
40
-      is_menu: false,
41
-      hidden: true,
42
-      meta: {
43
-        title: '计数扣费',
44
-        noCache: true
45
-      }
46
-    },
47
-    {
48
-      path: '/dialysis/charging_collect',
49
-      component: () => import('@/xt_pages/charging/charging_collect'),
50
-      name: '计费汇总',
51
-      meta: {
52
-        title: '计费汇总',
53
-        noCache: true
54
-      }
55
-    },
56
-  ]
15
+  // children: [
16
+  //   {
17
+  //     path: '/dialysis/charging',
18
+  //     component: () => import('@/xt_pages/charging/index'),
19
+  //     name: '计费查询',
20
+  //     meta: {
21
+  //       title: '计费查询',
22
+  //       noCache: true
23
+  //     }
24
+  //   },
25
+  //   {
26
+  //     path: '/dialysis/charging_cz',
27
+  //     component: () => import('@/xt_pages/charging/charging_cz'),
28
+  //     name: '计费充值',
29
+  //     is_menu: false,
30
+  //     hidden: true,
31
+  //     meta: {
32
+  //       title: '计费充值',
33
+  //       noCache: true
34
+  //     }
35
+  //   },
36
+  //   {
37
+  //     path: '/dialysis/chargin_kf',
38
+  //     component: () => import('@/xt_pages/charging/chargin_kf'),
39
+  //     name: '计数扣费',
40
+  //     is_menu: false,
41
+  //     hidden: true,
42
+  //     meta: {
43
+  //       title: '计数扣费',
44
+  //       noCache: true
45
+  //     }
46
+  //   },
47
+  //   {
48
+  //     path: '/dialysis/charging_collect',
49
+  //     component: () => import('@/xt_pages/charging/charging_collect'),
50
+  //     name: '计费汇总',
51
+  //     meta: {
52
+  //       title: '计费汇总',
53
+  //       noCache: true
54
+  //     }
55
+  //   },
56
+  // ]
57 57
  
58 58
 }

+ 1 - 0
src/xt_pages/charging/charging_cz.vue View File

@@ -188,6 +188,7 @@
188 188
           hdhp_count:this.hdhp_count,
189 189
           hp_count:this.hp_count,
190 190
           other_count:this.other_count,
191
+          
191 192
         }
192 193
        savePatentCount(params).then(response=>{
193 194