ai新增图生视频配置

This commit is contained in:
zhangjian
2025-07-29 15:58:15 +07:00
parent 682bda163e
commit d0f0fccdc8
+6
View File
@@ -10,6 +10,8 @@ export function changeAtType(val) {
return 'AI女友' return 'AI女友'
case 5: case 5:
return '文生图' return '文生图'
case 6:
return '图生视频'
} }
} }
export function changeAiContentType(val) { export function changeAiContentType(val) {
@@ -41,6 +43,10 @@ export function AtTypeList(val) {
{ {
value: 5, value: 5,
label: '文生图' label: '文生图'
},
{
value: 6,
label: '图生视频'
} }
] ]
} }