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

72 lines
1.3 KiB

import request from "@/utils/request";
// ------ 上报类型 ------
// 查询类型
export function reportList(data) {
return request({
url: "/report/list",
method: "post",
data: data,
});
}
export function reportAdd(data) {
return request({
url: "/report/add",
method: "post",
data: data,
});
}
export function reportUpd(data) {
return request({
url: "/report/upd",
method: "post",
data: data,
});
}
export function reportDel(data) {
return request({
url: "/report/del",
method: "post",
data: data,
});
}
// ------ 上报管理 ------
export function managerQuery(data) {
return request({
url: "/report/queryManager",
method: "post",
data: data,
});
}
export function managerAdd(data) {
return request({
url: "/report/addManager",
method: "post",
data: data,
});
}
export function managerUpd(data) {
return request({
url: "/report/updManager",
method: "post",
data: data,
});
}
export function managerDel(data) {
return request({
url: "/report/delManager",
method: "post",
data: data,
});
}
// 下载上报汇总表
export function reportDown(data) {
return request({
url: "/admin/treatment/adminExportTreatmentPgZip",
method: "post",
data: data,
});
}