针灸质控中心平台
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.
 
 
 
 
 

59 lines
1.1 KiB

import request from "@/utils/request";
// 随访队列
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,
});
}