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

View File

@ -37,7 +37,7 @@
:pagination="false"
:bordered="false"
: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 { useRouter } from "vue-router";
import { fileList } from "@/dict/secFiles.js";
const { t } = useI18n();
const router = useRouter();
import iconLink from "@/assets/image/icon/icon-link.png";
@ -160,7 +161,6 @@ onMounted(() => {
}
return {
index: index,
...item,
formattedDate: formattedDate, //
year: year,
@ -195,7 +195,7 @@ const columns = [
router.push({
path: "/secfilingsDefail",
query: {
filingDate: row.filingDate,
idx: row.idx,
},
});
},

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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