38 lines
752 B
JavaScript
38 lines
752 B
JavaScript
|
|
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
|
|
})
|
|
}
|