fix:项目初始化
This commit is contained in:
@@ -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
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user