Compare commits

..

No commits in common. "64e39d49dfbaa7090d94b12edd1bf70cb75a8bef" and "af659cfbb5a2c087098d99f0a634b162f5355a4d" have entirely different histories.

3 changed files with 4 additions and 12 deletions

View File

@ -32,10 +32,10 @@ export const useHeaderMenuConfig = () => {
label: t('header_menu.corporate_information.governance'),
key: 'governance',
},
// {
// label: t('header_menu.corporate_information.corporate_video'),
// key: 'corporate_video',
// },//现阶段不展示
{
label: t('header_menu.corporate_information.corporate_video'),
key: 'corporate_video',
},
],
},
{

View File

@ -47,10 +47,6 @@ const state = reactive({
label: 'All Years',
value: 'all_years',
},
...Array.from({ length: 2025 - 1990 + 1 }, (_, i) => {
const year = 2025 - i
return { label: String(year), value: String(year) }
})
], //
inputValue: '', //
})

View File

@ -54,10 +54,6 @@ const state = reactive({
label: 'All Years',
value: 'all_years',
},
...Array.from({ length: 2025 - 1990 + 1 }, (_, i) => {
const year = 2025 - i
return { label: String(year), value: String(year) }
}),
], //
inputValue: '', //
})