From 46dbe3cd1d8c072fe54f3277b32ce582d34aeb0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?2023302111026=E9=BB=84=E7=BD=97=E9=9C=96?= <1243969857@qq.com> Date: Fri, 16 May 2025 16:02:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=8D=E9=A6=88=E7=AB=99=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E5=AE=9E=E7=8E=B0=EF=BC=8C=E6=94=B9=E4=B8=BA=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E6=89=8D=E8=83=BD=E8=BF=9B=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../luojia-island/vue-frontend/package.json | 1 + .../vue-frontend/src/components/Header.vue | 2 +- .../vue-frontend/src/router/index.js | 6 + .../vue-frontend/src/views/FeedBack.vue | 213 ++++++++++++++++++ 4 files changed, 221 insertions(+), 1 deletion(-) create mode 100644 珞珈岛-项目相关文件/luojia-island/vue-frontend/src/views/FeedBack.vue diff --git a/珞珈岛-项目相关文件/luojia-island/vue-frontend/package.json b/珞珈岛-项目相关文件/luojia-island/vue-frontend/package.json index 6518689..bf69343 100644 --- a/珞珈岛-项目相关文件/luojia-island/vue-frontend/package.json +++ b/珞珈岛-项目相关文件/luojia-island/vue-frontend/package.json @@ -15,6 +15,7 @@ "vue": "^3.2.13", "vue-router": "^4.5.0" }, + "devDependencies": { "@babel/core": "^7.12.16", "@babel/eslint-parser": "^7.12.16", diff --git a/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/components/Header.vue b/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/components/Header.vue index ccac695..cc6274d 100644 --- a/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/components/Header.vue +++ b/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/components/Header.vue @@ -31,7 +31,6 @@ - 反馈站 @@ -40,6 +39,7 @@
通知 + 反馈站
用户头像 diff --git a/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/router/index.js b/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/router/index.js index 999050e..b47b68d 100644 --- a/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/router/index.js +++ b/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/router/index.js @@ -5,6 +5,7 @@ import PostDetail from '@/views/PostDetail.vue'; import MainPage from '@/views/MainPage.vue'; import UserPage from '@/views/UserPage.vue'; import NotificationList from '@/views/NotificationList.vue'; +import FeedBack from '@/views/FeedBack.vue'; const routes = [ { @@ -36,6 +37,11 @@ const routes = [ path: '/notificationlist', name: 'NotificationList', component: NotificationList + }, + {//反馈站页面 + path: '/feedback', + name: 'FeedBack', + component: FeedBack }, {//详细通知页面 path: '/notification/:id', diff --git a/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/views/FeedBack.vue b/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/views/FeedBack.vue new file mode 100644 index 0000000..b853263 --- /dev/null +++ b/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/views/FeedBack.vue @@ -0,0 +1,213 @@ + + + + + \ No newline at end of file