优化图纸编辑功能和提交逻辑

This commit is contained in:
wangqiao
2025-09-13 12:51:48 +08:00
parent f3fb25349b
commit 2901b24f43
2 changed files with 3 additions and 9 deletions

View File

@ -91,6 +91,6 @@ export const view = (params: { id: string | number; projectId: string | number }
/**
* 编辑图纸
*/
export const edit = (data: TcreateReq & { projectId: number }) => {
export const edit = (data: TcreateReq) => {
return useDollarFetchRequest.put<IResponse<boolean>>('/prod-api/app-api/business/app/project/update', data)
}