XMLWAN 4 anni fa
parent
commit
5e60dc82fc

+ 9 - 0
src/api/project/project.js Vedi 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 Vedi 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
        }