1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- import request from "@/utils/request";
-
-
-
- export function getSchedulePatientList(params) {
- return request({
- url: "/api/hispatient/list",
- method: "get",
- params:params
- });
- }
-
-
- export function getPatientInfo(params) {
- return request({
- url: "/api/hispatient/get",
- method: "get",
- params:params
- });
- }
-
-
- export function createCaseHistory(params) {
- return request({
- url: "/api/doctorworkstation/casehistory/create",
- method: "post",
- params:params
- });
- }
-
-
-
-
-
-
-
- // export function createCaseHistory(params) {
- // return request({
- // url: "/api/doctorworkstation/casehistory/create",
- // method: "post",
- // params:params
- // });
- // }
-
-
- // export function createCaseHistory(params) {
- // return request({
- // url: "/api/doctorworkstation/casehistory/create",
- // method: "post",
- // params:params
- // });
- // }
-
-
-
-
-
-
|