Browse Source

HIS 系统提交

XMLWAN 4 years ago
parent
commit
5e60dc82fc
2 changed files with 10 additions and 1 deletions
  1. 9 0
      src/api/project/project.js
  2. 1 1
      src/xt_pages/outpatientRegistration/index.vue

+ 9 - 0
src/api/project/project.js View File

@@ -425,4 +425,13 @@ export function changePatient(id,params){
425 425
       method:"get",
426 426
       params:params
427 427
     })
428
+  }
429
+
430
+  export function getTodaySchedulePatient(params){
431
+     
432
+    return request({
433
+      url:"/api/hispatient/gettodayschedulepatient",
434
+      method:"get",
435
+      params:params
436
+    })
428 437
   }

+ 1 - 1
src/xt_pages/outpatientRegistration/index.vue View File

@@ -449,7 +449,7 @@ export default {
449 449
           getTodaySchedulePatient().then(response=>{
450 450
              if(response.data.state == 1){
451 451
                var patient =  response.data.data.patient
452
-               console.log("今日排班患者",patient)
452
+            //    console.log("今日排班",patient)
453 453
              }
454 454
           }) 
455 455
        }