替换游戏名修改属性

This commit is contained in:
yml2213
2026-08-16 18:55:26 +08:00
parent d2429618f4
commit 786d20e9cd
8 changed files with 26 additions and 20 deletions
+3 -3
View File
@@ -150,9 +150,9 @@ export function getListingChips(item: Listing): ListingDisplayChip[] {
if (online) {
chips.push({ label: '方便上号', value: online })
}
// 解锁赛伊德为必选项,仅在号主勾选「是」时展示
if (readAssetString(item, 'unlock_said') === '是') {
chips.push({ label: '解锁赛伊德', value: '是' })
// 仅在号主确认可修改游戏名时展示
if (readAssetString(item, 'can_change_game_name') === '是') {
chips.push({ label: '可修改游戏名', value: '是' })
}
// 全英雄为必选项,仅在号主勾选「是」时展示
if (readAssetString(item, 'all_hero') === '是') {