fix:项目初始化

This commit is contained in:
ouyangxiu
2025-06-10 17:11:41 +07:00
commit db9bffd2c5
713 changed files with 159746 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
import request from '@/utils/request'
// 查询换脸订单
export function aiimagetovideoCallback(data) {
return request({
url: '/api/web/aiimagetovideo/callback',
method: 'post',
filterParam: true,
data
})
}
// 查询图生视频列表
export function aiImgToVideoList(data) {
return request({
url: '/api/web/aiimagetovideo/list',
method: 'post',
filterParam: true,
data
})
}
// 修改图生视频列表
export function aiImgToVideoUpdate(data) {
return request({
url: '/api/web/aiimagetovideo/modify',
method: 'post',
data
})
}
// 删除图生视频列表
export function aiImgToVideoDel(data) {
return request({
url: '/api/web/aiimagetovideo/del',
method: 'post',
data
})
}