fix secfilings
This commit is contained in:
parent
be833783f2
commit
7b78b04f38
56482
src/dict/secFiles.js
56482
src/dict/secFiles.js
File diff suppressed because it is too large
Load Diff
@ -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,
|
||||
|
@ -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,
|
||||
},
|
||||
});
|
||||
},
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user