This commit is contained in:
ouyangxiu
2025-06-18 14:34:00 +07:00
parent 87f2c9e7a3
commit 654f7c9792
4 changed files with 65 additions and 17 deletions
+35 -17
View File
@@ -1,10 +1,16 @@
export function changeAtType(val) {
switch (val) {
case 1:
return '换脸'
case 2:
return '脱衣'
}
export function changeAtType(val) {
switch (val) {
case 1:
return '图片换脸'
case 2:
return '视频换脸'
case 3:
return 'AI脱衣'
case 4:
return 'AI女友'
case 5:
return '文生图'
}
}
export function changeAiContentType(val) {
switch (val) {
@@ -15,16 +21,28 @@ export function changeAiContentType(val) {
}
}
export function AtTypeList(val) {
return [
{
value: 1,
label: '换脸'
},
{
value: 2,
label: '脱衣'
}
]
return [
{
value: 1,
label: '图片换脸'
},
{
value: 2,
label: '视频换脸'
},
{
value: 3,
label: 'AI脱衣'
},
{
value: 4,
label: 'AI女友'
},
{
value: 5,
label: '文生图'
}
]
}
// ai内容类型
export function AiContentTypeList(val) {
+15
View File
@@ -142,6 +142,15 @@ export function TranTypeList() {
}, {
value: 34,
label: 'AI图片生视频'
}, {
value: 35,
label: '购买楼凤'
}, {
value: 36,
label: '购买外围'
}, {
value: 37,
label: 'AI文生图'
}
]
@@ -219,6 +228,12 @@ export function changeTranType(val) {
return 'AI女友积分充值'
case 34:
return 'AI图片生视频'
case 35:
return '购买楼凤'
case 36:
return '购买外围'
case 37:
return 'AI文生图'
}
}
export function changeMark(val) {
+14
View File
@@ -62,5 +62,19 @@ export function changeTranTradeType(val) {
return '积分兑换金币'
case 30:
return '折扣卡活动'
case 31:
return '签到返还收益'
case 32:
return 'AI女友聊天'
case 33:
return 'AI女友积分充值'
case 34:
return 'AI图片生视频'
case 35:
return '购买楼凤'
case 36:
return '购买外围'
case 37:
return 'AI文生图'
}
}
@@ -24,6 +24,7 @@
<el-option label="视频换脸" :value="2" />
<el-option label="AI脱衣" :value="3" />
<el-option label="AI女友" :value="4" />
<el-option label="文生图" :value="5" />
</el-select>
</el-form-item>
</el-col>