资源管理页面微调

This commit is contained in:
caozehui
2026-05-28 14:37:40 +08:00
parent 0b26de20b9
commit 0090a922c6
4 changed files with 60 additions and 18 deletions

View File

@@ -9,6 +9,10 @@ export const addResourceManage = (params: FormData) => {
return http.upload('/resourceManage/add', params)
}
export const updateResourceManage = (params: ResourceManage.ReqUpdateResourceManage) => {
return http.post('/resourceManage/update', params)
}
export const getResourceManagePlayUrl = (id: string) => {
return http.get<ResourceManage.PlayVO>(`/resourceManage/play?id=${id}`)
}