feat(watermark): nested menu and 3 table list pages (#7 #8)

This commit is contained in:
root
2026-03-10 17:02:58 +08:00
parent 9e0d321177
commit 0d12ce5201
7 changed files with 698 additions and 26 deletions
+24
View File
@@ -28,3 +28,27 @@ export function deleteWatermarkTask(id) {
method: 'delete'
})
}
export function getVideoParseLogs(params) {
return request({
url: '/api/admin/watermark/video-parse-logs',
method: 'get',
params
})
}
export function getVideoParseUnlocks(params) {
return request({
url: '/api/admin/watermark/video-parse-unlocks',
method: 'get',
params
})
}
export function getVideoDownloadFailures(params) {
return request({
url: '/api/admin/watermark/video-download-failures',
method: 'get',
params
})
}