From 6a4800acbb12d6e7b05145e603bdd2643affcf4e Mon Sep 17 00:00:00 2001
From: WindowBird <13870814+windows-bird@user.noreply.gitee.com>
Date: Tue, 7 Oct 2025 17:10:00 +0800
Subject: [PATCH] =?UTF-8?q?=E6=96=87=E7=AB=A0=E9=A1=B5=E9=9D=A2=E5=92=8C?=
=?UTF-8?q?=E6=96=87=E7=AB=A0=E8=B7=B3=E8=BD=AC?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/components/DevelopNews.vue | 81 +++---
app/components/news/new.vue | 470 +++++++++++++++++++++++++++++++
app/components/news/solution.vue | 11 +
app/pages/new.vue | 13 +
4 files changed, 542 insertions(+), 33 deletions(-)
create mode 100644 app/components/news/new.vue
create mode 100644 app/components/news/solution.vue
create mode 100644 app/pages/new.vue
diff --git a/app/components/DevelopNews.vue b/app/components/DevelopNews.vue
index e29d624..78e85c0 100644
--- a/app/components/DevelopNews.vue
+++ b/app/components/DevelopNews.vue
@@ -18,17 +18,16 @@
解决方案
-
+
- 创特景区SaaS平台 打造专业景区共享出行综合解决方案
+ {{ article.title }}
-
2025-07-08 12:40
-
-
-
- 为什么说景区共享代步车的未来发展空间巨大?
-
-
2023-05-08 11:25
+
{{ article.date }}
@@ -39,17 +38,16 @@
开发知识
-
+
- 共享电动车为何能在共享经济中独树一帜?
+ {{ article.title }}
-
2023-06-29 12:26
-
-
-
- 景区共享智能代步车运营方案有哪些?
-
-
2023-05-10 10:23
+
{{ article.date }}
@@ -60,17 +58,16 @@
行业动态
-
+
- 景区共享电动代步车如何引领景区发展趋势?
+ {{ article.title }}
-
2024-12-11 23:53
-
-
-
- 景区共享观光代步车为何如此火爆?
-
-
2023-07-13 15:42
+
{{ article.date }}
@@ -84,35 +81,53 @@
const articles = {
solutions: [
{
+ id: 1,
title: "创特景区SaaS平台 打造专业景区共享出行综合解决方案",
- date: "2025-07-08 12:40"
+ date: "2025-07-08 12:40",
+ link: "/new"
},
{
+ id: 2,
title: "为什么说景区共享代步车的未来发展空间巨大?",
- date: "2023-05-08 11:25"
+ date: "2023-05-08 11:25",
+ link: "/news/scenic-shared-vehicle-future"
}
],
knowledge: [
{
+ id: 3,
title: "共享电动车为何能在共享经济中独树一帜?",
- date: "极 2023-06-29 12:26"
+ date: "2023-06-29 12:26",
+ link: "/news/shared-ebike-unique-position"
},
{
+ id: 4,
title: "景区共享智能代步车运营方案有哪些?",
- date: "2023-05-10 10:23"
+ date: "2023-05-10 10:23",
+ link: "/news/scenic-smart-vehicle-operations"
}
],
trends: [
{
+ id: 5,
title: "景区共享电动代步车如何引领景区发展趋势?",
- date: "2024-12-11 23:53"
+ date: "2024-12-11 23:53",
+ link: "/news/scenic-ebike-trend-leadership"
},
{
+ id: 6,
title: "景区共享观光代步车为何如此火爆?",
- date: "2023-07-13 15:42"
+ date: "2023-07-13 15:42",
+ link: "/news/scenic-sightseeing-vehicle-popularity"
}
]
}
+
+// 处理文章点击事件
+const handleArticleClick = (articleLink) => {
+ // 使用Nuxt的navigateTo进行路由跳转
+ navigateTo(articleLink)
+}
\ No newline at end of file
diff --git a/app/components/news/solution.vue b/app/components/news/solution.vue
new file mode 100644
index 0000000..27324a8
--- /dev/null
+++ b/app/components/news/solution.vue
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/pages/new.vue b/app/pages/new.vue
new file mode 100644
index 0000000..f6690fc
--- /dev/null
+++ b/app/pages/new.vue
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file