针灸质控中心平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

90 lines
1.7 KiB

import request from "@/utils/request";
// 公共队列
export function commonQueue(data) {
return request({
url: "/followup/commonQueue",
method: "post",
data: data,
});
}
// 随访队列
export function followupQuery(data) {
return request({
url: "/followup/query",
method: "post",
data: data,
});
}
// 新增随访队列
export function followupAdd(data) {
return request({
url: "/followup/add",
method: "post",
data: data,
});
}
// 新增随访队列
export function followupUpd(data) {
return request({
url: "/followup/upd",
method: "post",
data: data,
});
}
// 新增随访队列
export function followupDel(data) {
return request({
url: "/followup/del",
method: "post",
data: data,
});
}
// ----随访对象----
// 查看随访对象
export function queryPatient(data) {
return request({
url: "/followup/queryPatient",
method: "post",
data: data,
});
}
// 修改随访对象 队列信息
export function updPatient(data) {
return request({
url: "/followup/updPatient",
method: "post",
data: data,
});
}
// 随访工单
export function queryTask(data) {
return request({
url: "/followup/queryTask",
method: "post",
data: data,
});
}
// 失访
export function updStatus(data) {
return request({
url: "/followup/updStatus",
method: "post",
data: data,
});
}
// 患者随访
export function followPatient(data) {
return request({
url: "/followup/followPatient",
method: "post",
data: data,
});
}
// 修改随访状态
export function followStatus(data) {
return request({
url: "/followup/status",
method: "post",
data: data,
});
}