Skip to content

Commit 35e7d8f

Browse files
committed
closedPersonalSponsor
1 parent 91d4fcb commit 35e7d8f

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

app/assets/locale/all.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export default {
140140
'※ 好評により全席完売しました。\n※ 詳しくは {0} についてをご覧ください。',
141141
personal_sponsor_ticket: '個人スポンサーチケット',
142142
personal_sponsor_ticket_explain:
143-
'※ 当日来場される方は、別途、一般もしくは一般+アフターパーティーチケットの購入が必要です。\n※ 詳しくは {0} についてをご覧ください。',
143+
'※ 販売を終了しました。\n※ 詳しくは {0} についてをご覧ください。',
144144
announce_your_participate: 'ネームカードが完成したらSNSで参加表明しましょう!',
145145
succeed_register: 'ネームカードの情報登録が完了しました!',
146146
succeed_register_detail:
@@ -454,7 +454,7 @@ export default {
454454
'* Purchase of a general or general with after party ticket is required for attending only handson. \n* For more information, please see {0}.',
455455
personal_sponsor_ticket: 'Personal Sponsor Ticket',
456456
personal_sponsor_ticket_explain:
457-
'* Purchase of a General or General with After Party ticket is required for those attending on the day of the event. \n* For more information, please see {0}.',
457+
'* Tickets sales ended. \n* For more information, please see {0}.',
458458
announce_your_participate:
459459
'Once you have completed your name card, announce your participation on social networking sites!',
460460
succeed_register: 'Name card information registration has been completed!',

app/components/namecard/TicketSection.vue

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,25 @@ import { closedEarlyPrice, closedPrice } from '~/utils/status.constants'
143143
/>
144144
</template>
145145
<template #action>
146+
<!--
146147
<nuxt-link to="/#personal-sponsor">
147148
{{ $t('top.personal_sponsor_ticket') }}
148149
</nuxt-link>
150+
-->
151+
<a>
152+
<s>{{ $t('top.personal_sponsor_ticket') }}</s>
153+
</a>
149154
</template>
150155
<template #default>
151156
<div class="price-list">
157+
<!--
152158
<i18n-t keypath="top.personal_sponsor_price" tag="p" class="price" scope="global">
153159
<strong>10,000</strong>
154160
</i18n-t>
161+
-->
162+
<i18n-t keypath="top.personal_sponsor_price" tag="p" class="price" scope="global">
163+
<strong><s>10,000</s></strong>
164+
</i18n-t>
155165
<i18n-t
156166
keypath="top.personal_sponsor_ticket_explain"
157167
tag="p"

app/components/sponsor/PersonalSponsorSection.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import RoundButton from '~/components/button/RoundButton.vue'
33
import SponsorMerits from '~/components/sponsor/SponsorMerits.vue'
44
import MarkDownText from '~/components/MarkDownText.vue'
55
import { ticketUrl } from '~/utils/constants'
6+
import { closedPersonalSponsor } from '~/utils/status.constants'
67
</script>
78

89
<template>
@@ -26,6 +27,7 @@ import { ticketUrl } from '~/utils/constants'
2627
target="_blank"
2728
rel="noreferrer"
2829
class="personal-sponsor-apply-btn"
30+
:disabled="closedPersonalSponsor"
2931
>
3032
{{ $t('words.apply_personal_sponsor') }}
3133
</RoundButton>

app/utils/status.constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export const closedSession = true
22
export const closedSponsor = true
3+
export const closedPersonalSponsor = true
34
export const closedVolunteer = true
45
export const closedHandson = true
56
export const closedEarlyPrice = true

0 commit comments

Comments
 (0)