视频模板代码框架

This commit is contained in:
ZLI263
2025-10-09 16:16:50 +08:00
parent c93cf465e8
commit 13b71ad1fc
5 changed files with 1025 additions and 47 deletions

View File

@@ -0,0 +1,27 @@
import request from '@/utils/request'
// 获取检测模板日志列表
export function getDetectTemplateLogs(params) {
return request({
url: '/detect-video-template/logs',
method: 'get',
params
})
}
// 删除检测模板日志
export function deleteDetectTemplate(id) {
return request({
url: `/detect-video-template/${id}`,
method: 'delete'
})
}
// 检测模板
export function detectTemplate(data) {
return request({
url: '/detect-video-template/detect',
method: 'post',
data
})
}