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.
92 lines
1.9 KiB
92 lines
1.9 KiB
3 months ago
|
import request from "@/utils/request";
|
||
|
// ------ 筛查上报相关接口 ------
|
||
|
// 通过组织id查询医院信息
|
||
|
export function queryHospitalNoToken(data) {
|
||
|
return request({
|
||
|
url: "hospital/queryHospitalNoToken",
|
||
|
method: "post",
|
||
|
data: data,
|
||
|
});
|
||
|
}
|
||
|
// 创建筛查
|
||
|
export function create(data) {
|
||
|
return request({
|
||
|
url: "screening/createNoToken",
|
||
|
method: "post",
|
||
|
data: data,
|
||
|
});
|
||
|
}
|
||
|
// 通过code提交数据
|
||
|
export function screenSave(data) {
|
||
|
return request({
|
||
|
url: "screening/save",
|
||
|
method: "post",
|
||
|
data: data,
|
||
|
});
|
||
|
}
|
||
|
// 提交筛查上报数据
|
||
|
export function screenSubmit(data) {
|
||
|
return request({
|
||
|
url: "screening/submitNoToken",
|
||
|
method: "post",
|
||
|
data: data,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// ------ 筛查二维码相关接口 ------
|
||
|
// 筛查二维码 列表
|
||
|
export function queryScreenList(data) {
|
||
|
return request({
|
||
|
url: "/wxQrCode/queryScreenList",
|
||
|
method: "post",
|
||
|
data: data,
|
||
|
});
|
||
|
}
|
||
|
// 添加筛查二维码
|
||
|
export function addScreen(data) {
|
||
|
return request({
|
||
|
url: "/wxQrCode/addScreen",
|
||
|
method: "post",
|
||
|
data: data,
|
||
|
});
|
||
|
}
|
||
|
// 删除筛查二维码
|
||
|
export function deleteScreen(data) {
|
||
|
return request({
|
||
|
url: "/wxQrCode/deleteScreen",
|
||
|
method: "post",
|
||
|
data: data,
|
||
|
});
|
||
|
}
|
||
|
// // 导出二维码
|
||
|
// export function exportJmrs(data) {
|
||
|
// return request({
|
||
|
// url: "/wxQrCode/exportJmrs",
|
||
|
// method: "post",
|
||
|
// data: data,
|
||
|
// });
|
||
|
// }
|
||
|
// // 导出二维码
|
||
|
// export function exportZipScreenPath(data) {
|
||
|
// return request({
|
||
|
// url: "/wxQrCode/exportZipScreenPath",
|
||
|
// method: "post",
|
||
|
// data: data,
|
||
|
// });
|
||
|
// }
|
||
|
// // 导出海报二维码
|
||
|
// export function exportHbScreen(data) {
|
||
|
// return request({
|
||
|
// url: "/wxQrCode/exportHbZipScreenPath",
|
||
|
// method: "post",
|
||
|
// data: data,
|
||
|
// });
|
||
|
// }
|
||
|
// // 导出二维码
|
||
|
// export function exportScreen(data) {
|
||
|
// return request({
|
||
|
// url: "/wxQrCode/exportScreen",
|
||
|
// method: "post",
|
||
|
// data: data,
|
||
|
// });
|
||
|
// }
|