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"
|
: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,
|
||||||
|
@ -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,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -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,
|
||||||
|
@ -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,
|
||||||
|
@ -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,
|
||||||
|
@ -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>
|
||||||
|
|
||||||
|
@ -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,
|
||||||
|
@ -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,
|
||||||
|
Loading…
Reference in New Issue
Block a user