Skip to content

Commit f4f39d8

Browse files
feat: application
1 parent b6ef007 commit f4f39d8

File tree

8 files changed

+586
-77
lines changed

8 files changed

+586
-77
lines changed

ui/src/api/application/application.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,11 @@ const getApplication: (
3939
* @param 参数
4040
*/
4141
const postApplication: (
42+
wordspace_id: string,
4243
data: ApplicationFormType,
4344
loading?: Ref<boolean>,
44-
) => Promise<Result<any>> = (data, loading) => {
45-
return post(`${prefix}`, data, undefined, loading)
45+
) => Promise<Result<any>> = (wordspace_id, data, loading) => {
46+
return post(`${prefix}/${wordspace_id}/application`, data, undefined, loading)
4647
}
4748

4849
/**

0 commit comments

Comments
 (0)