fix secfilings

This commit is contained in:
张 元山 2025-05-30 17:17:02 +08:00
parent be833783f2
commit 7b78b04f38
9 changed files with 29063 additions and 27451 deletions

File diff suppressed because it is too large Load Diff

View File

@ -37,7 +37,7 @@
:pagination="false" :pagination="false"
:bordered="false" :bordered="false"
:size="'medium'" :size="'medium'"
:row-key="(row) => row.index" :row-key="(row) => row.idx"
/> />
<!-- 分页器 --> <!-- 分页器 -->
@ -160,7 +160,6 @@ onMounted(() => {
} }
return { return {
index: index,
...item, ...item,
formattedDate: formattedDate, // formattedDate: formattedDate, //
year: year, year: year,

View File

@ -37,7 +37,7 @@
:pagination="false" :pagination="false"
:bordered="false" :bordered="false"
:size="'medium'" :size="'medium'"
:row-key="(row) => row.index" :row-key="(row) => row.idx"
/> />
<!-- 分页器 --> <!-- 分页器 -->
@ -76,6 +76,7 @@ import { NSelect, NDataTable, NPagination, NButton, NIcon } from "naive-ui";
import { useI18n } from "vue-i18n"; import { useI18n } from "vue-i18n";
import { useRouter } from "vue-router"; import { useRouter } from "vue-router";
import { fileList } from "@/dict/secFiles.js"; import { fileList } from "@/dict/secFiles.js";
const { t } = useI18n(); const { t } = useI18n();
const router = useRouter(); const router = useRouter();
import iconLink from "@/assets/image/icon/icon-link.png"; import iconLink from "@/assets/image/icon/icon-link.png";
@ -160,7 +161,6 @@ onMounted(() => {
} }
return { return {
index: index,
...item, ...item,
formattedDate: formattedDate, // formattedDate: formattedDate, //
year: year, year: year,
@ -195,7 +195,7 @@ const columns = [
router.push({ router.push({
path: "/secfilingsDefail", path: "/secfilingsDefail",
query: { query: {
filingDate: row.filingDate, idx: row.idx,
}, },
}); });
}, },

View File

@ -35,7 +35,7 @@
:columns="columns" :columns="columns"
:data="paginatedData" :data="paginatedData"
:pagination="false" :pagination="false"
:row-key="(row) => row.index" :row-key="(row) => row.idx"
:bordered="false" :bordered="false"
:single-line="false" :single-line="false"
:scroll-x="600" :scroll-x="600"
@ -160,7 +160,6 @@ onMounted(() => {
} }
return { return {
index: index,
...item, ...item,
formattedDate: formattedDate, // formattedDate: formattedDate, //
year: year, year: year,

View File

@ -37,7 +37,7 @@
:pagination="false" :pagination="false"
:bordered="false" :bordered="false"
:size="'medium'" :size="'medium'"
:row-key="(row) => row.index" :row-key="(row) => row.idx"
/> />
<!-- 分页器 --> <!-- 分页器 -->
@ -161,7 +161,6 @@ onMounted(() => {
} }
return { return {
index: index,
...item, ...item,
formattedDate: formattedDate, // formattedDate: formattedDate, //
year: year, year: year,

View File

@ -90,8 +90,8 @@ const filingData = ref({
const route = useRoute(); const route = useRoute();
onMounted(() => { onMounted(() => {
const { filingDate } = route.query; const { idx } = route.query;
const file = fileList.find((item) => item.filingDate === filingDate); const file = fileList.find((item) => item.idx === idx);
if (file) { if (file) {
filingData.value = { filingData.value = {
form: file.form, form: file.form,

View File

@ -90,8 +90,8 @@ const filingData = ref({
const route = useRoute(); const route = useRoute();
onMounted(() => { onMounted(() => {
const { filingDate } = route.query; const { idx } = route.query;
const file = fileList.find((item) => item.filingDate === filingDate); const file = fileList.find((item) => item.idx === idx);
if (file) { if (file) {
filingData.value = { filingData.value = {
form: file.form, form: file.form,
@ -103,7 +103,6 @@ onMounted(() => {
issuer: "FiEE, Inc. ", issuer: "FiEE, Inc. ",
}; };
} }
console.log(filingData.value);
}); });
</script> </script>

View File

@ -90,8 +90,8 @@ const filingData = ref({
const route = useRoute(); const route = useRoute();
onMounted(() => { onMounted(() => {
const { filingDate } = route.query; const { idx } = route.query;
const file = fileList.find((item) => item.filingDate === filingDate); const file = fileList.find((item) => item.idx === idx);
if (file) { if (file) {
filingData.value = { filingData.value = {
form: file.form, form: file.form,

View File

@ -90,8 +90,8 @@ const filingData = ref({
const route = useRoute(); const route = useRoute();
onMounted(() => { onMounted(() => {
const { filingDate } = route.query; const { idx } = route.query;
const file = fileList.find((item) => item.filingDate === filingDate); const file = fileList.find((item) => item.idx === idx);
if (file) { if (file) {
filingData.value = { filingData.value = {
form: file.form, form: file.form,