@@ -203,7 +211,18 @@ const { t: $t } = useI18n();
const contentRef = ref(null);
const isInView = ref(false);
let observer = null;
-
+const newList = ref([
+ {
+ time: "May 30, 2025 EDT",
+ title: "FiEE, Inc. Announces Reinitiation of Trading on Nasdaq",
+ router: "/news",
+ },
+ {
+ time: "2 June, 2025",
+ title: "FiEE, Inc. Closes Its First Day of Trading on NASDAQ",
+ router: "/news",
+ },
+]);
onMounted(() => {
if (contentRef.value && "IntersectionObserver" in window) {
observer = new IntersectionObserver(
@@ -237,8 +256,13 @@ onUnmounted(() => {
});
import { useRouter } from "vue-router";
const router = useRouter();
-const handleLink = (link) => {
- router.push(link);
+const handleLink = (routers, index) => {
+ router.push({
+ path: routers,
+ query: {
+ data: index,
+ },
+ });
};
diff --git a/src/views/myHome/size768/index.vue b/src/views/myHome/size768/index.vue
index ea6df11..5f3357e 100644
--- a/src/views/myHome/size768/index.vue
+++ b/src/views/myHome/size768/index.vue
@@ -64,25 +64,34 @@
>
-
-
-
-
May 30, 2025 EDT
-
-
- FiEE, Inc. Announces Reinitiation of Trading on Nasdaq
-
+
- View Press Release

+
+
{{ item.time }}
+
+
+ {{ item.title }}
+
+
+
+
+ View Press Release

+
@@ -230,6 +239,18 @@ onMounted(() => {
isInView.value = true;
}
});
+const newList = ref([
+ {
+ time: "May 30, 2025 EDT",
+ title: "FiEE, Inc. Announces Reinitiation of Trading on Nasdaq",
+ router: "/news",
+ },
+ {
+ time: "2 June, 2025",
+ title: "FiEE, Inc. Closes Its First Day of Trading on NASDAQ",
+ router: "/news",
+ },
+]);
onUnmounted(() => {
if (observer) {
@@ -238,8 +259,13 @@ onUnmounted(() => {
});
import { useRouter } from "vue-router";
const router = useRouter();
-const handleLink = (link) => {
- router.push(link);
+const handleLink = (routers, index) => {
+ router.push({
+ path: routers,
+ query: {
+ data: index,
+ },
+ });
};
From 1195b8f8e4d6f0d3bd6184ad3fa318f39fd46b58 Mon Sep 17 00:00:00 2001
From: liwenhao <1273011930@qq.com>
Date: Tue, 3 Jun 2025 10:50:55 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E6=96=B0=E9=97=BB=E6=96=B0=E5=A2=9E?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/myHome/size1440/index.vue | 4 ++--
src/views/myHome/size1920/index.vue | 4 ++--
src/views/myHome/size375/index.vue | 4 ++--
src/views/myHome/size768/index.vue | 4 ++--
4 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/views/myHome/size1440/index.vue b/src/views/myHome/size1440/index.vue
index d2ad379..9dc67d8 100644
--- a/src/views/myHome/size1440/index.vue
+++ b/src/views/myHome/size1440/index.vue
@@ -215,7 +215,7 @@ const isInView = ref(false);
let observer = null;
const newList = ref([
{
- time: "May 30, 2025 EDT",
+ time: "May 30, 2025",
title: "FiEE, Inc. Announces Reinitiation of Trading on Nasdaq",
router: "/news",
},
@@ -262,7 +262,7 @@ const handleLink = (routers, index) => {
router.push({
path: routers,
query: {
- data: index,
+ date: index,
},
});
};
diff --git a/src/views/myHome/size1920/index.vue b/src/views/myHome/size1920/index.vue
index de1ca4a..8fc6b2e 100644
--- a/src/views/myHome/size1920/index.vue
+++ b/src/views/myHome/size1920/index.vue
@@ -201,7 +201,7 @@ const sampleDate = ref(formatted);
const newList = ref([
{
- time: "May 30, 2025 EDT",
+ time: "May 30, 2025",
title: "FiEE, Inc. Announces Reinitiation of Trading on Nasdaq",
router: "/news",
},
@@ -253,7 +253,7 @@ const handleLink = (routers, index) => {
router.push({
path: routers,
query: {
- data: index,
+ date: index,
},
});
};
diff --git a/src/views/myHome/size375/index.vue b/src/views/myHome/size375/index.vue
index 27b1ca2..7e0aa2b 100644
--- a/src/views/myHome/size375/index.vue
+++ b/src/views/myHome/size375/index.vue
@@ -213,7 +213,7 @@ const isInView = ref(false);
let observer = null;
const newList = ref([
{
- time: "May 30, 2025 EDT",
+ time: "May 30, 2025",
title: "FiEE, Inc. Announces Reinitiation of Trading on Nasdaq",
router: "/news",
},
@@ -260,7 +260,7 @@ const handleLink = (routers, index) => {
router.push({
path: routers,
query: {
- data: index,
+ date: index,
},
});
};
diff --git a/src/views/myHome/size768/index.vue b/src/views/myHome/size768/index.vue
index 5f3357e..6734da2 100644
--- a/src/views/myHome/size768/index.vue
+++ b/src/views/myHome/size768/index.vue
@@ -241,7 +241,7 @@ onMounted(() => {
});
const newList = ref([
{
- time: "May 30, 2025 EDT",
+ time: "May 30, 2025",
title: "FiEE, Inc. Announces Reinitiation of Trading on Nasdaq",
router: "/news",
},
@@ -263,7 +263,7 @@ const handleLink = (routers, index) => {
router.push({
path: routers,
query: {
- data: index,
+ date: index,
},
});
};