api-doctor.ts
1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { client } from "./client";
import { RecoilState } from "recoil";
export default {
getDoctorsInfo : (token : RecoilState<any>) => {
return client.get('/doctor', {
headers : {
Authorization : token,
},
});
},
getPatientList : (token : RecoilState<any>) => {
return client.get('/doctor/patient', {
headers : {
Authorization : token,
},
});
},
getPatientDetail : (token : RecoilState<any>, PatientId : string) => {
return client.get(`/doctor/patient/${PatientId}`, {
headers : {
Authorization : token,
},
});
},
getPatientBottleDetail : (token : RecoilState<any>, BottleId : string) => {
return client.get(`/doctor/bottle/${BottleId}`, {
headers : {
Authorization : token,
},
});
},
writePatientInfo : (token : RecoilState<any>, Data : any) => {
return client.patch('/doctor/patient', Data, {
headers : {
Authorization : token,
},
});
},
writeBottleFeedback : (token : RecoilState<any>, Data : any) => {
return client.post('/doctor/bottle', Data, {
headers : {
Authorization : token,
},
});
},
registerPatient : (token : RecoilState<any>, Data : any) => {
return client.post('/doctor/patient', Data, {
headers : {
Authorization : token,
},
});
},
removePatient : (token : RecoilState<any>, PatientId : string) => {
return client.delete(`/doctor/patient/${PatientId}`, {
headers : {
Authorization : token,
},
});
},
};