通用培训新增附件
This commit is contained in:
@@ -220,6 +220,29 @@ export function addOrUpdateSystemDocument(param) {
|
||||
data: param
|
||||
})
|
||||
}
|
||||
// 新增/修改通用培训附件
|
||||
export function addOrUpdateSystemDocumentAttachment(param) {
|
||||
return request({
|
||||
url: `/SystemDocument/addOrUpdateSystemDocumentAttachment`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
// 通用培训附件列表
|
||||
export function getSystemDocumentAttachmentList(param) {
|
||||
return request({
|
||||
url: `/SystemDocument/getSystemDocumentAttachmentList`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
// 删除通用培训附件
|
||||
export function deleteSystemDocumentAttachment(systemDocumentAttachmentId) {
|
||||
return request({
|
||||
url: `/SystemDocument/deleteSystemDocumentAttachment/${systemDocumentAttachmentId}`,
|
||||
method: 'delete',
|
||||
})
|
||||
}
|
||||
|
||||
export function deleteSystemDocument(id) {
|
||||
return request({
|
||||
|
||||
Reference in New Issue
Block a user