This commit is contained in:
liwenhao 2025-05-23 15:41:24 +08:00
commit 3d6ad2475b
6 changed files with 40 additions and 4 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -41,8 +41,10 @@
<script setup>
import { ref, watch, onMounted, computed, reactive } from "vue";
import { useI18n } from "vue-i18n";
import quarterlyPdf from "@/assets/file/2025 Q1 Quarterly Results.pdf";
import quarterlyPdf2025Q1 from "@/assets/file/2025 Q1 Quarterly Results.pdf";
import annualPdf2024 from "@/assets/file/2024 Annual Report.pdf";
import quarterlyPdf2023Q1 from "@/assets/file/2023 Q1 Quarterly Results.pdf";
import quarterlyPdf2023Q2 from "@/assets/file/2023 Q2 Quarterly Results.pdf";
const { t } = useI18n();
const searchQuery = ref("");
@ -52,7 +54,22 @@ const state = reactive({
title: "2025 Q1 Quarterly Results",
description:
"Unaudited First Quarter and Full Year 2025 Financial Results",
url: quarterlyPdf,
url: quarterlyPdf2025Q1,
},
{
title: "2024 Annual Report",
description: "Annual Report for the year ended December 31, 2024",
url: annualPdf2024,
},
{
title: "2023 Q1 Quarterly Results",
description: "First Quarter and Full Year 2023 Financial Results",
url: quarterlyPdf2023Q1,
},
{
title: "2023 Q2 Quarterly Results",
description: "Second Quarter and Full Year 2023 Financial Results",
url: quarterlyPdf2023Q2,
},
],
});

View File

@ -53,6 +53,10 @@ import { ref, watch, onMounted, computed, reactive } from "vue";
import { NButton, NInput, NTooltip } from "naive-ui";
import { useI18n } from "vue-i18n";
import quarterlyPdf2025Q1 from "@/assets/file/2025 Q1 Quarterly Results.pdf";
import annualPdf2024 from "@/assets/file/2024 Annual Report.pdf";
import quarterlyPdf2023Q1 from "@/assets/file/2023 Q1 Quarterly Results.pdf";
import quarterlyPdf2023Q2 from "@/assets/file/2023 Q2 Quarterly Results.pdf";
const { t } = useI18n();
const searchQuery = ref("");
@ -62,7 +66,22 @@ const state = reactive({
title: "2025 Q1 Quarterly Results",
description:
"Unaudited First Quarter and Full Year 2025 Financial Results",
url: "/src/assets/file/2025 Q1 Quarterly Results.pdf",
url: quarterlyPdf2025Q1,
},
{
title: "2024 Annual Report",
description: "Annual Report for the year ended December 31, 2024",
url: annualPdf2024,
},
{
title: "2023 Q1 Quarterly Results",
description: "First Quarter and Full Year 2023 Financial Results",
url: quarterlyPdf2023Q1,
},
{
title: "2023 Q2 Quarterly Results",
description: "Second Quarter and Full Year 2023 Financial Results",
url: quarterlyPdf2023Q2,
},
],
});