postdischarge-ui/src/api/manage/patientInfoImport.js

44 lines
968 B
JavaScript
Raw Normal View History

2024-12-05 09:14:53 +08:00
import request from '@/utils/request'
// 查询导入批次列表
export function patientInfoImportBatchlist(query) {
return request({
2024-12-06 11:46:51 +08:00
url: '/manage/patientInfoimportmain/list',
2024-12-05 09:14:53 +08:00
method: 'get',
params: query
})
2024-12-30 10:04:16 +08:00
}
2025-03-19 17:18:14 +08:00
2024-12-30 10:04:16 +08:00
// 删除导入
export function updateSn(sn) {
return request({
2025-03-19 17:18:14 +08:00
url: `/manage/patientInfoimportmain/updateSn?sn=${sn}`,
2024-12-30 10:04:16 +08:00
method: 'POST'
})
}
2025-03-19 17:18:14 +08:00
//删除导入明细
2024-12-30 10:04:16 +08:00
export function updatePatientInfoImport(data) {
return request({
2025-03-19 17:18:14 +08:00
url: `/manage/patientInfoimportmain/updatePatientInfoImport`,
2024-12-30 10:04:16 +08:00
method: 'POST',
data
})
}
2025-03-19 17:18:14 +08:00
// 查询最后一条信息
export function outboundConfirmation() {
return request({
url: '/manage/signroute/outboundConfirmation',
method: 'get',
})
}
// 确认按钮
export function directOutbound(data) {
return request({
url: `/manage/signroute/directOutbound`,
method: 'post',
data
})
}