头像视频合成

This commit is contained in:
ZLI263
2025-10-08 08:03:30 +08:00
parent 5f0d5a0daf
commit 6209b691ab
7 changed files with 586 additions and 106 deletions

10
src/api/tts.js Normal file
View File

@@ -0,0 +1,10 @@
import request from '@/utils/request'
// 获取TTS日志列表
export function getTtsLogList(query) {
return request({
url: '/tts/log/list',
method: 'get',
params: query
})
}