style: ddl文案

This commit is contained in:
2026-04-21 10:55:19 +08:00
parent f6d027474a
commit ca8764ad7a
4 changed files with 6 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ export default {
copyMail: 'Successfully copied to clipboard!',
sendEmailFailed: 'Failed to open email client, we have copied the email to your clipboard.',
applicationDeadline: 'Application Deadline:\n15th July 2026',
beforeStartDDL: 'Application Peroid:\nMay 15 July 15, 2026 ',
howToApply: 'How to Apply',
stepByStep: 'Step by step',
step1Title: 'Step 1. Become an \nAiDA Subscriber',

View File

@@ -12,6 +12,7 @@ export default {
copyMailAddress: '复制邮件地址',
sendEmailFailed: '无法打开邮件客户端,我们已将邮箱地址复制到您的剪贴板。',
applicationDeadline: '申请期限:\n2026年7月15日',
beforeStartDDL:'开放申请:\n2026.05.15 07.15',
howToApply: '申请方法',
stepByStep: '步骤指南',
step1Title: '1. 成为 AiDA 订阅用户',

View File

@@ -422,7 +422,7 @@ const showStep = (val: number) => {
}
// 是否晚于2026年7月15日
const date = ref('2026-07-15')
const date = ref('2026-07-15T00:00:00')
const isExpired = computed(() => {
const now = new Date()
const targetDate = new Date(date.value)

View File

@@ -19,7 +19,9 @@
>
<div>{{ start ? $t('AwardsPage.submitApplication') : $t('AwardsPage.beforeStart') }}</div>
<img v-if="start" src="@/assets/images/award/arrow_right.png" alt="" class="arrow" />
<div class="ddl">{{ $t('AwardsPage.applicationDeadline') }}</div>
<div class="ddl">
{{ start ? $t('AwardsPage.applicationDeadline') : $t('AwardsPage.beforeStartDDL') }}
</div>
</div>
</div>