2025-12-05 16:07:52 +08:00
|
|
|
import request from '@/axios';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 查询项目数据列表
|
|
|
|
|
export function list(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/blade-system/archivingManage/list',
|
|
|
|
|
method: 'POST',
|
|
|
|
|
data: data,
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-12-08 15:46:00 +08:00
|
|
|
export function getArchivingManageFilesApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/blade-system/archivingManage/getArchivingManageFiles',
|
|
|
|
|
method: 'POST',
|
|
|
|
|
data: data,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
export function submitRectifyNoticeApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/blade-system/archivingManage/addRectification',
|
|
|
|
|
method: 'POST',
|
|
|
|
|
data: data,
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-12-08 16:24:36 +08:00
|
|
|
export function agreeRectificationApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/blade-system/archivingManage/agreeRectification',
|
|
|
|
|
method: 'POST',
|
|
|
|
|
data: data,
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-12-09 13:10:08 +08:00
|
|
|
export function transferAuditDetailApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/blade-system/archivingManage/transferAuditDetail',
|
|
|
|
|
method: 'POST',
|
|
|
|
|
data: data,
|
|
|
|
|
})
|
|
|
|
|
}
|