fix(review-meeting): 修复附件预览接口调用参数

pull/874/head
Codewoc 2026-04-11 12:34:12 +08:00
parent 7cd5a7e64d
commit b503a5c72a
1 changed files with 2 additions and 1 deletions

View File

@ -178,7 +178,8 @@ export const getReviewMeeting = (id: number) =>
/** 获取会议附件预览URL */
export const getAttachmentPreviewUrl = (params: GetAttachmentPreviewUrlParams) => {
return request.get<string>('/project/review-meeting/get-attachment-preview-url', {
return request.get<string>({
url: '/project/review-meeting/get-attachment-preview-url',
params
})
}