fix:The phonetic symbol is displayed incorrectly

& Optimize the feedback page
This commit is contained in:
Zyronon
2025-12-11 00:54:53 +08:00
parent bdad26ef96
commit 577b933855
14 changed files with 299 additions and 176 deletions

View File

@@ -14,6 +14,7 @@ import Setting from "@/pages/setting/Setting.vue";
import Login from "@/pages/user/login.vue";
import User from "@/pages/user/User.vue";
import VipIntro from "@/pages/user/VipIntro.vue";
import Feedback from "@/pages/feedback.vue";
// import { useAuthStore } from "@/stores/user.ts";
export const routes: RouteRecordRaw[] = [
@@ -36,10 +37,14 @@ export const routes: RouteRecordRaw[] = [
{path: 'study-article', redirect: '/articles'},
{path: 'book-detail', component: BookDetail},
{path: 'book-list', component: BookList},
{path: 'setting', component: Setting},
{path: 'login', component: Login},
{path: 'user', component: User},
{path: 'vip', component: VipIntro},
{path: 'setting', component: Setting},
{path: 'feedback', component: Feedback},
]
},
{path: '/batch-edit-article', component: () => import("@/pages/article/BatchEditArticlePage.vue")},