资料关闭完成

This commit is contained in:
2026-09-17 13:25:39 +08:00
parent 79ab4b9b9f
commit 4b31fbc3f1
13 changed files with 1455 additions and 68 deletions
+8
View File
@@ -15,4 +15,12 @@ export function deleteFileApi(id: number, fileId: number) {
url: `/api/changes/${id}/attachments/${fileId}`,
method: 'delete',
});
}
// 文件列表
export function fileListApi(change_id: number) {
return request({
url: `/api/changes/${change_id}/attachments`,
method: 'get',
});
}