xiaochan 4 meses atrás
pai
commit
9e0ffc5d5a
1 arquivos alterados com 5 adições e 13 exclusões
  1. 5 13
      src/api/inpatient/xiang-mu-lu-ru-v2.ts

+ 5 - 13
src/api/inpatient/xiang-mu-lu-ru-v2.ts

@@ -1,17 +1,9 @@
 import requestV2 from "@/utils/request-v2";
 
 export function getPatientInfo(patNo: string, times: number | null) {
-    return requestV2({
-        url: "/xmlrv2/getPatientInfo",
-        method: "get",
-        params: {patNo, times}
-    })
-}
-
-export function getFee(data) {
-    return requestV2({
-        url: "/xmlrv2/getFee",
-        method: "post",
-        data
-    })
+  return requestV2({
+    url: "/xmlrv2/getPatientInfo",
+    method: "get",
+    params: { patNo, times },
+  });
 }