fix quarterlyresults
This commit is contained in:
parent
108970fd41
commit
aad1267c61
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/assets/file/quarterly/10Q 2021-Q1.pdf
Normal file
BIN
src/assets/file/quarterly/10Q 2021-Q1.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/quarterly/10Q 2021-Q2.pdf
Normal file
BIN
src/assets/file/quarterly/10Q 2021-Q2.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/quarterly/10Q 2021-Q3.pdf
Normal file
BIN
src/assets/file/quarterly/10Q 2021-Q3.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/quarterly/10Q 2022-Q1.pdf
Normal file
BIN
src/assets/file/quarterly/10Q 2022-Q1.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/quarterly/10Q 2022-Q2.pdf
Normal file
BIN
src/assets/file/quarterly/10Q 2022-Q2.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/quarterly/10Q 2022-Q3.pdf
Normal file
BIN
src/assets/file/quarterly/10Q 2022-Q3.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/quarterly/10Q 2023-Q1.pdf
Normal file
BIN
src/assets/file/quarterly/10Q 2023-Q1.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/quarterly/10Q 2023-Q2.pdf
Normal file
BIN
src/assets/file/quarterly/10Q 2023-Q2.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/quarterly/10Q 2023-Q3.pdf
Normal file
BIN
src/assets/file/quarterly/10Q 2023-Q3.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/quarterly/10Q 2024-Q1.pdf
Normal file
BIN
src/assets/file/quarterly/10Q 2024-Q1.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/quarterly/10Q 2024-Q2.pdf
Normal file
BIN
src/assets/file/quarterly/10Q 2024-Q2.pdf
Normal file
Binary file not shown.
BIN
src/assets/file/quarterly/10Q 2024-Q3.pdf
Normal file
BIN
src/assets/file/quarterly/10Q 2024-Q3.pdf
Normal file
Binary file not shown.
@ -41,30 +41,84 @@
|
|||||||
<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 quarterlyPdf2025Q1 from "@/assets/file/2025 Q1 Quarterly Results.pdf";
|
import quarterlyPdf2024Q3 from "@/assets/file/quarterly/10Q 2024-Q3.pdf";
|
||||||
import quarterlyPdf2023Q1 from "@/assets/file/2023 Q1 Quarterly Results.pdf";
|
import quarterlyPdf2024Q2 from "@/assets/file/quarterly/10Q 2024-Q2.pdf";
|
||||||
import quarterlyPdf2023Q2 from "@/assets/file/2023 Q2 Quarterly Results.pdf";
|
import quarterlyPdf2024Q1 from "@/assets/file/quarterly/10Q 2024-Q1.pdf";
|
||||||
|
import quarterlyPdf2023Q3 from "@/assets/file/quarterly/10Q 2023-Q3.pdf";
|
||||||
|
import quarterlyPdf2023Q2 from "@/assets/file/quarterly/10Q 2023-Q2.pdf";
|
||||||
|
import quarterlyPdf2023Q1 from "@/assets/file/quarterly/10Q 2023-Q1.pdf";
|
||||||
|
import quarterlyPdf2022Q3 from "@/assets/file/quarterly/10Q 2022-Q3.pdf";
|
||||||
|
import quarterlyPdf2022Q2 from "@/assets/file/quarterly/10Q 2022-Q2.pdf";
|
||||||
|
import quarterlyPdf2022Q1 from "@/assets/file/quarterly/10Q 2022-Q1.pdf";
|
||||||
|
import quarterlyPdf2021Q3 from "@/assets/file/quarterly/10Q 2021-Q3.pdf";
|
||||||
|
import quarterlyPdf2021Q2 from "@/assets/file/quarterly/10Q 2021-Q2.pdf";
|
||||||
|
import quarterlyPdf2021Q1 from "@/assets/file/quarterly/10Q 2021-Q1.pdf";
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const searchQuery = ref("");
|
const searchQuery = ref("");
|
||||||
|
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
list: [
|
list: [
|
||||||
{
|
{
|
||||||
title: "2025 Q1 Quarterly Results",
|
title: "2024 Q3 Quarterly Results",
|
||||||
description:
|
description: "Third Quarter 2024 Financial Results",
|
||||||
"Unaudited First Quarter and Full Year 2025 Financial Results",
|
url: quarterlyPdf2024Q3,
|
||||||
url: quarterlyPdf2025Q1,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "2023 Q1 Quarterly Results",
|
title: "2024 Q2 Quarterly Results",
|
||||||
description: "First Quarter and Full Year 2023 Financial Results",
|
description: "Second Quarter 2024 Financial Results",
|
||||||
url: quarterlyPdf2023Q1,
|
url: quarterlyPdf2024Q2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2024 Q1 Quarterly Results",
|
||||||
|
description: "First Quarter 2024 Financial Results",
|
||||||
|
url: quarterlyPdf2024Q1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2023 Q3 Quarterly Results",
|
||||||
|
description: "Third Quarter 2023 Financial Results",
|
||||||
|
url: quarterlyPdf2023Q3,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "2023 Q2 Quarterly Results",
|
title: "2023 Q2 Quarterly Results",
|
||||||
description: "Second Quarter and Full Year 2023 Financial Results",
|
description: "Second Quarter 2023 Financial Results",
|
||||||
url: quarterlyPdf2023Q2,
|
url: quarterlyPdf2023Q2,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "2023 Q1 Quarterly Results",
|
||||||
|
description: "First Quarter 2023 Financial Results",
|
||||||
|
url: quarterlyPdf2023Q1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2022 Q3 Quarterly Results",
|
||||||
|
description: "Third Quarter 2022 Financial Results",
|
||||||
|
url: quarterlyPdf2022Q3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2022 Q2 Quarterly Results",
|
||||||
|
description: "Second Quarter 2022 Financial Results",
|
||||||
|
url: quarterlyPdf2022Q2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2022 Q1 Quarterly Results",
|
||||||
|
description: "First Quarter 2022 Financial Results",
|
||||||
|
url: quarterlyPdf2022Q1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2021 Q3 Quarterly Results",
|
||||||
|
description: "Third Quarter 2021 Financial Results",
|
||||||
|
url: quarterlyPdf2021Q3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2021 Q2 Quarterly Results",
|
||||||
|
description: "Second Quarter 2021 Financial Results",
|
||||||
|
url: quarterlyPdf2021Q2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2021 Q1 Quarterly Results",
|
||||||
|
description: "First Quarter 2021 Financial Results",
|
||||||
|
url: quarterlyPdf2021Q1,
|
||||||
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -50,37 +50,87 @@
|
|||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, watch, onMounted, computed, reactive } from "vue";
|
import { ref, watch, onMounted, computed, reactive } from "vue";
|
||||||
import { NButton, NInput, NTooltip } from "naive-ui";
|
|
||||||
import { useI18n } from "vue-i18n";
|
import { useI18n } from "vue-i18n";
|
||||||
|
import quarterlyPdf2024Q3 from "@/assets/file/quarterly/10Q 2024-Q3.pdf";
|
||||||
|
import quarterlyPdf2024Q2 from "@/assets/file/quarterly/10Q 2024-Q2.pdf";
|
||||||
|
import quarterlyPdf2024Q1 from "@/assets/file/quarterly/10Q 2024-Q1.pdf";
|
||||||
|
import quarterlyPdf2023Q3 from "@/assets/file/quarterly/10Q 2023-Q3.pdf";
|
||||||
|
import quarterlyPdf2023Q2 from "@/assets/file/quarterly/10Q 2023-Q2.pdf";
|
||||||
|
import quarterlyPdf2023Q1 from "@/assets/file/quarterly/10Q 2023-Q1.pdf";
|
||||||
|
import quarterlyPdf2022Q3 from "@/assets/file/quarterly/10Q 2022-Q3.pdf";
|
||||||
|
import quarterlyPdf2022Q2 from "@/assets/file/quarterly/10Q 2022-Q2.pdf";
|
||||||
|
import quarterlyPdf2022Q1 from "@/assets/file/quarterly/10Q 2022-Q1.pdf";
|
||||||
|
import quarterlyPdf2021Q3 from "@/assets/file/quarterly/10Q 2021-Q3.pdf";
|
||||||
|
import quarterlyPdf2021Q2 from "@/assets/file/quarterly/10Q 2021-Q2.pdf";
|
||||||
|
import quarterlyPdf2021Q1 from "@/assets/file/quarterly/10Q 2021-Q1.pdf";
|
||||||
|
|
||||||
import quarterlyPdf2025Q1 from "@/assets/file/2025 Q1 Quarterly Results.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("");
|
||||||
|
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
list: [
|
list: [
|
||||||
{
|
{
|
||||||
title: "2025 Q1 Quarterly Results",
|
title: "2024 Q3 Quarterly Results",
|
||||||
description:
|
description: "Third Quarter 2024 Financial Results",
|
||||||
"Unaudited First Quarter and Full Year 2025 Financial Results",
|
url: quarterlyPdf2024Q3,
|
||||||
url: quarterlyPdf2025Q1,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "2023 Q1 Quarterly Results",
|
title: "2024 Q2 Quarterly Results",
|
||||||
description: "First Quarter and Full Year 2023 Financial Results",
|
description: "Second Quarter 2024 Financial Results",
|
||||||
url: quarterlyPdf2023Q1,
|
url: quarterlyPdf2024Q2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2024 Q1 Quarterly Results",
|
||||||
|
description: "First Quarter 2024 Financial Results",
|
||||||
|
url: quarterlyPdf2024Q1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2023 Q3 Quarterly Results",
|
||||||
|
description: "Third Quarter 2023 Financial Results",
|
||||||
|
url: quarterlyPdf2023Q3,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "2023 Q2 Quarterly Results",
|
title: "2023 Q2 Quarterly Results",
|
||||||
description: "Second Quarter and Full Year 2023 Financial Results",
|
description: "Second Quarter 2023 Financial Results",
|
||||||
url: quarterlyPdf2023Q2,
|
url: quarterlyPdf2023Q2,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "2023 Q1 Quarterly Results",
|
||||||
|
description: "First Quarter 2023 Financial Results",
|
||||||
|
url: quarterlyPdf2023Q1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2022 Q3 Quarterly Results",
|
||||||
|
description: "Third Quarter 2022 Financial Results",
|
||||||
|
url: quarterlyPdf2022Q3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2022 Q2 Quarterly Results",
|
||||||
|
description: "Second Quarter 2022 Financial Results",
|
||||||
|
url: quarterlyPdf2022Q2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2022 Q1 Quarterly Results",
|
||||||
|
description: "First Quarter 2022 Financial Results",
|
||||||
|
url: quarterlyPdf2022Q1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2021 Q3 Quarterly Results",
|
||||||
|
description: "Third Quarter 2021 Financial Results",
|
||||||
|
url: quarterlyPdf2021Q3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2021 Q2 Quarterly Results",
|
||||||
|
description: "Second Quarter 2021 Financial Results",
|
||||||
|
url: quarterlyPdf2021Q2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "2021 Q1 Quarterly Results",
|
||||||
|
description: "First Quarter 2021 Financial Results",
|
||||||
|
url: quarterlyPdf2021Q1,
|
||||||
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
onMounted(async () => {});
|
|
||||||
const filteredList = computed(() => {
|
const filteredList = computed(() => {
|
||||||
if (!searchQuery.value) return state.list;
|
if (!searchQuery.value) return state.list;
|
||||||
const query = searchQuery.value.toLowerCase();
|
const query = searchQuery.value.toLowerCase();
|
||||||
|
@ -64,7 +64,7 @@
|
|||||||
<p class="sec-text">
|
<p class="sec-text">
|
||||||
{{ t("financialinformation.secfilings.sec.desc") }}
|
{{ t("financialinformation.secfilings.sec.desc") }}
|
||||||
<a
|
<a
|
||||||
href="https://www.sec.gov/cgi-bin/browse-edgar?company=&CIK=NCTY&filenum=&State=&SIC=&owner=include&action=getcompany"
|
href="https://www.sec.gov/cgi-bin/browse-edgar?company=FiEE&match=starts-with&filenum=&State=&Country=&SIC=&myowner=exclude&action=getcompany"
|
||||||
class="link"
|
class="link"
|
||||||
>{{ t("financialinformation.secfilings.sec.click_here") }}</a
|
>{{ t("financialinformation.secfilings.sec.click_here") }}</a
|
||||||
>.
|
>.
|
||||||
@ -79,101 +79,100 @@ import { ref } from "vue";
|
|||||||
import { useI18n } from "vue-i18n";
|
import { useI18n } from "vue-i18n";
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
// 年度报告数据
|
// 年度报告数据
|
||||||
const annualReports = ref([
|
const annualReports = ref([
|
||||||
{
|
{
|
||||||
fileName: "2025 Annual Report",
|
fileName: "2024 Annual Report",
|
||||||
date: "April 10, 2025",
|
date: "April 10, 2025",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000182912625002538/fieeinc_10k.htm",
|
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000182912625002538/fieeinc_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2024 Annual Report",
|
fileName: "2023 Annual Report",
|
||||||
date: "April 12, 2024",
|
date: "April 12, 2024",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000182912624002449/miniminc_10k.htm",
|
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000182912624002449/miniminc_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2023 Annual Report",
|
fileName: "2022 Annual Report",
|
||||||
date: "March 31, 2023",
|
date: "March 31, 2023",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000149315223010335/form10-k.htm",
|
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000149315223010335/form10-k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2022 Annual Report",
|
fileName: "2021 Annual Report",
|
||||||
date: "March 31, 2022",
|
date: "March 31, 2022",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000149315222008365/form10-k.htm",
|
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000149315222008365/form10-k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2021 Annual Report",
|
fileName: "2020 Annual Report",
|
||||||
date: "April 13, 2021",
|
date: "April 13, 2021",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000165495421004133/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000165495421004133/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2020 Annual Report",
|
fileName: "2019 Annual Report",
|
||||||
date: "April 15, 2020",
|
date: "April 15, 2020",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000165495420004069/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000165495420004069/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2019 Annual Report",
|
fileName: "2018 Annual Report",
|
||||||
date: "April 1, 2019",
|
date: "April 1, 2019",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000165495419003878/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000165495419003878/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2018 Annual Report",
|
fileName: "2017 Annual Report",
|
||||||
date: "March 30, 2018",
|
date: "March 30, 2018",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000165495418003402/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000165495418003402/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2017 Annual Report",
|
fileName: "2016 Annual Report",
|
||||||
date: "March 22, 2017",
|
date: "March 22, 2017",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000165495417002279/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000165495417002279/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2016 Annual Report",
|
fileName: "2015 Annual Report",
|
||||||
date: "March 15, 2016",
|
date: "March 15, 2016",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448816006596/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448816006596/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2015 Annual Report",
|
fileName: "2014 Annual Report",
|
||||||
date: "March 24, 2015",
|
date: "March 24, 2015",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448815001308/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448815001308/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2014 Annual Report",
|
fileName: "2013 Annual Report",
|
||||||
date: "March 31, 2014",
|
date: "March 31, 2014",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448814001518/zmpt_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448814001518/zmpt_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2013 Annual Report",
|
fileName: "2012 Annual Report",
|
||||||
date: "March 29, 2013",
|
date: "March 29, 2013",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448813001584/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448813001584/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2012 Annual Report",
|
fileName: "2011 Annual Report",
|
||||||
date: "March 30, 2012",
|
date: "March 30, 2012",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448812001548/zoom_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448812001548/zoom_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2011 Annual Report",
|
fileName: "2010 Annual Report",
|
||||||
date: "March 29, 2011",
|
date: "March 29, 2011",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448811000969/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448811000969/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2010 Annual Report",
|
fileName: "2009 Annual Report",
|
||||||
date: "March 31, 2010",
|
date: "March 31, 2010",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448810001043/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448810001043/zmtp_10k.htm",
|
||||||
|
@ -64,7 +64,7 @@
|
|||||||
<p class="sec-text">
|
<p class="sec-text">
|
||||||
{{ t("financialinformation.secfilings.sec.desc") }}
|
{{ t("financialinformation.secfilings.sec.desc") }}
|
||||||
<a
|
<a
|
||||||
href="https://www.sec.gov/cgi-bin/browse-edgar?company=&CIK=NCTY&filenum=&State=&SIC=&owner=include&action=getcompany"
|
href="https://www.sec.gov/cgi-bin/browse-edgar?company=FiEE&match=starts-with&filenum=&State=&Country=&SIC=&myowner=exclude&action=getcompany"
|
||||||
class="link"
|
class="link"
|
||||||
>{{ t("financialinformation.secfilings.sec.click_here") }}</a
|
>{{ t("financialinformation.secfilings.sec.click_here") }}</a
|
||||||
>.
|
>.
|
||||||
@ -83,97 +83,97 @@ const { t } = useI18n();
|
|||||||
// 年度报告数据
|
// 年度报告数据
|
||||||
const annualReports = ref([
|
const annualReports = ref([
|
||||||
{
|
{
|
||||||
fileName: "2025 Annual Report",
|
fileName: "2024 Annual Report",
|
||||||
date: "April 10, 2025",
|
date: "April 10, 2025",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000182912625002538/fieeinc_10k.htm",
|
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000182912625002538/fieeinc_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2024 Annual Report",
|
fileName: "2023 Annual Report",
|
||||||
date: "April 12, 2024",
|
date: "April 12, 2024",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000182912624002449/miniminc_10k.htm",
|
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000182912624002449/miniminc_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2023 Annual Report",
|
fileName: "2022 Annual Report",
|
||||||
date: "March 31, 2023",
|
date: "March 31, 2023",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000149315223010335/form10-k.htm",
|
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000149315223010335/form10-k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2022 Annual Report",
|
fileName: "2021 Annual Report",
|
||||||
date: "March 31, 2022",
|
date: "March 31, 2022",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000149315222008365/form10-k.htm",
|
"https://www.sec.gov/ix?doc=/Archives/edgar/data/1467761/000149315222008365/form10-k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2021 Annual Report",
|
fileName: "2020 Annual Report",
|
||||||
date: "April 13, 2021",
|
date: "April 13, 2021",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000165495421004133/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000165495421004133/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2020 Annual Report",
|
fileName: "2019 Annual Report",
|
||||||
date: "April 15, 2020",
|
date: "April 15, 2020",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000165495420004069/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000165495420004069/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2019 Annual Report",
|
fileName: "2018 Annual Report",
|
||||||
date: "April 1, 2019",
|
date: "April 1, 2019",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000165495419003878/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000165495419003878/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2018 Annual Report",
|
fileName: "2017 Annual Report",
|
||||||
date: "March 30, 2018",
|
date: "March 30, 2018",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000165495418003402/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000165495418003402/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2017 Annual Report",
|
fileName: "2016 Annual Report",
|
||||||
date: "March 22, 2017",
|
date: "March 22, 2017",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000165495417002279/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000165495417002279/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2016 Annual Report",
|
fileName: "2015 Annual Report",
|
||||||
date: "March 15, 2016",
|
date: "March 15, 2016",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448816006596/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448816006596/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2015 Annual Report",
|
fileName: "2014 Annual Report",
|
||||||
date: "March 24, 2015",
|
date: "March 24, 2015",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448815001308/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448815001308/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2014 Annual Report",
|
fileName: "2013 Annual Report",
|
||||||
date: "March 31, 2014",
|
date: "March 31, 2014",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448814001518/zmpt_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448814001518/zmpt_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2013 Annual Report",
|
fileName: "2012 Annual Report",
|
||||||
date: "March 29, 2013",
|
date: "March 29, 2013",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448813001584/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448813001584/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2012 Annual Report",
|
fileName: "2011 Annual Report",
|
||||||
date: "March 30, 2012",
|
date: "March 30, 2012",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448812001548/zoom_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448812001548/zoom_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2011 Annual Report",
|
fileName: "2010 Annual Report",
|
||||||
date: "March 29, 2011",
|
date: "March 29, 2011",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448811000969/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448811000969/zmtp_10k.htm",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fileName: "2010 Annual Report",
|
fileName: "2009 Annual Report",
|
||||||
date: "March 31, 2010",
|
date: "March 31, 2010",
|
||||||
downloadUrl:
|
downloadUrl:
|
||||||
"https://www.sec.gov/Archives/edgar/data/1467761/000135448810001043/zmtp_10k.htm",
|
"https://www.sec.gov/Archives/edgar/data/1467761/000135448810001043/zmtp_10k.htm",
|
||||||
|
Loading…
Reference in New Issue
Block a user