80 lines
1.7 KiB
JavaScript
80 lines
1.7 KiB
JavaScript
const URL = "/one-api/his/listpatient/";
|
|
const URL_YANKES = "/one-api/his/";
|
|
|
|
export async function search(prm) {
|
|
try {
|
|
var resp = await axios.post(URL + 'patient/search', prm);
|
|
if (resp.status != 200) {
|
|
return {
|
|
status: "ERR",
|
|
message: resp.statusText
|
|
};
|
|
}
|
|
let data = resp.data;
|
|
return data;
|
|
} catch (e) {
|
|
return {
|
|
status: "ERR",
|
|
message: e.message
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
export async function download_data(token,prm) {
|
|
try {
|
|
var resp = await axios.post(URL_YANKES + 'trx_order/get_order',{});
|
|
if (resp.status != 200) {
|
|
return {
|
|
status: "ERR",
|
|
message: resp.statusText
|
|
};
|
|
}
|
|
let data = resp.data;
|
|
return data;
|
|
} catch(e) {
|
|
return {
|
|
status: "ERR",
|
|
message: e.message
|
|
};
|
|
}
|
|
}
|
|
|
|
export async function sendresult(prm) {
|
|
try {
|
|
var resp = await axios.post(URL_YANKES + 'trx_order/sendresultorder',prm);
|
|
if (resp.status != 200) {
|
|
return {
|
|
status: "ERR",
|
|
message: resp.statusText
|
|
};
|
|
}
|
|
let data = resp.data;
|
|
return data;
|
|
} catch(e) {
|
|
return {
|
|
status: "ERR",
|
|
message: e.message
|
|
};
|
|
}
|
|
}
|
|
|
|
export async function rePushOrder(prm) {
|
|
try {
|
|
var resp = await axios.post(URL + 'patient/rePushOrder',prm);
|
|
if (resp.status != 200) {
|
|
return {
|
|
status: "ERR",
|
|
message: resp.statusText
|
|
};
|
|
}
|
|
let data = resp.data;
|
|
return data;
|
|
} catch(e) {
|
|
return {
|
|
status: "ERR",
|
|
message: e.message
|
|
};
|
|
}
|
|
}
|