Merge branch 'main' of https://gitea-inner.fontree.cn/scout666/fiee-official-website into LiWenHao
This commit is contained in:
commit
3d6ad2475b
BIN
src/assets/file/2023 Q1 Quarterly Results.pdf
Normal file
BIN
src/assets/file/2023 Q1 Quarterly Results.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/2023 Q2 Quarterly Results.pdf
Normal file
BIN
src/assets/file/2023 Q2 Quarterly Results.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/2024 Annual Report.pdf
Normal file
BIN
src/assets/file/2024 Annual Report.pdf
Normal file
Binary file not shown.
Binary file not shown.
@ -41,8 +41,10 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, watch, onMounted, computed, reactive } from "vue";
|
import { ref, watch, onMounted, computed, reactive } from "vue";
|
||||||
import { useI18n } from "vue-i18n";
|
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 { t } = useI18n();
|
||||||
const searchQuery = ref("");
|
const searchQuery = ref("");
|
||||||
|
|
||||||
@ -52,7 +54,22 @@ const state = reactive({
|
|||||||
title: "2025 Q1 Quarterly Results",
|
title: "2025 Q1 Quarterly Results",
|
||||||
description:
|
description:
|
||||||
"Unaudited First Quarter and Full Year 2025 Financial Results",
|
"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,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
@ -53,6 +53,10 @@ import { ref, watch, onMounted, computed, reactive } from "vue";
|
|||||||
import { NButton, NInput, NTooltip } from "naive-ui";
|
import { NButton, NInput, NTooltip } from "naive-ui";
|
||||||
import { useI18n } from "vue-i18n";
|
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 { t } = useI18n();
|
||||||
const searchQuery = ref("");
|
const searchQuery = ref("");
|
||||||
|
|
||||||
@ -62,7 +66,22 @@ const state = reactive({
|
|||||||
title: "2025 Q1 Quarterly Results",
|
title: "2025 Q1 Quarterly Results",
|
||||||
description:
|
description:
|
||||||
"Unaudited First Quarter and Full Year 2025 Financial Results",
|
"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,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user