diff --git a/frontend/src/features/orders/components/OrderAccountSnapshot.vue b/frontend/src/features/orders/components/OrderAccountSnapshot.vue index 6e1754d..7e7589a 100644 --- a/frontend/src/features/orders/components/OrderAccountSnapshot.vue +++ b/frontend/src/features/orders/components/OrderAccountSnapshot.vue @@ -98,7 +98,7 @@ const primaryRows = computed(() => { { label: '方便上号时段', value: formatOnlineTime(a.online_time) }, { label: '常用登录地', value: regions.length ? regions.join('、') : '--' }, { label: '人脸归属', value: formatScalar(a.face_owner) }, - { label: '是否解锁赛季', value: formatScalar(a.unlock_said) }, + { label: '是否可以修改游戏名', value: formatScalar(a.can_change_game_name) }, { label: '封禁记录', value: formatScalar(a.ban_record) === '--' ? '无' : formatScalar(a.ban_record), @@ -141,6 +141,7 @@ const extraRows = computed(() => { 'skin_groups', 'screenshot_groups', 'online_time', + 'can_change_game_name', 'unlock_said', 'ban_record', 'common_regions', diff --git a/frontend/src/features/seller/composables/usePublishDraft.ts b/frontend/src/features/seller/composables/usePublishDraft.ts index 6803037..6ef97e8 100644 --- a/frontend/src/features/seller/composables/usePublishDraft.ts +++ b/frontend/src/features/seller/composables/usePublishDraft.ts @@ -17,7 +17,7 @@ export function defaultPublishForm(): PublishForm { login_method: '', online_start: '', online_end: '', - unlock_said: '', + can_change_game_name: '', all_hero: '', ban_record: '', common_regions: [], diff --git a/frontend/src/features/seller/composables/usePublishForm.ts b/frontend/src/features/seller/composables/usePublishForm.ts index dcad6bd..cf343cd 100644 --- a/frontend/src/features/seller/composables/usePublishForm.ts +++ b/frontend/src/features/seller/composables/usePublishForm.ts @@ -308,7 +308,7 @@ export function usePublishForm(options: UsePublishFormOptions) { login_method: listing.login_platform || '', online_start: stringValue(onlineTime.start), online_end: stringValue(onlineTime.end), - unlock_said: stringValue(summary.unlock_said), + can_change_game_name: stringValue(summary.can_change_game_name), all_hero: stringValue(summary.all_hero), ban_record: stringValue(summary.ban_record), common_regions: stringArray(summary.common_regions), @@ -717,7 +717,7 @@ export function usePublishForm(options: UsePublishFormOptions) { } } if (pricing.banRecordOptions.value.length && !form.ban_record) return '请选择封禁记录' - if (!form.unlock_said) return '请选择是否解锁赛伊德' + if (!form.can_change_game_name) return '请选择是否可以修改游戏名' if (!form.all_hero) return '请选择是否有全英雄' if (form.depositAmountYuan === '' || Number(form.depositAmountYuan) < 0) return '请填写押金' if (!Number.isFinite(Number(form.depositAmountYuan))) return '押金格式不正确' @@ -818,7 +818,7 @@ export function usePublishForm(options: UsePublishFormOptions) { start: form.online_start, end: form.online_end, }, - unlock_said: form.unlock_said, + can_change_game_name: form.can_change_game_name, all_hero: form.all_hero, ban_record: form.ban_record, common_regions: form.common_regions, diff --git a/frontend/src/features/seller/views/MobileSellerListingCreateView.vue b/frontend/src/features/seller/views/MobileSellerListingCreateView.vue index 2d96bc1..120c630 100644 --- a/frontend/src/features/seller/views/MobileSellerListingCreateView.vue +++ b/frontend/src/features/seller/views/MobileSellerListingCreateView.vue @@ -119,7 +119,7 @@ function selectRadio(value: T, setter: (value: T) => void) { setter(value) } -const unlockSaidOptions = ['是', '否'] +const canChangeGameNameOptions = ['是', '否'] const allHeroOptions = ['是', '否'] // 在线时间:通栏自定义块 + 底部时间选择,避免 van-field 窄列截断原生 time @@ -405,16 +405,16 @@ const screenshotGuides: Record = { }}

- +