From bfbe620765ae5d1c4b4511d4ed9ef205a6f64df5 Mon Sep 17 00:00:00 2001 From: YuNan <3194726156@qq.com> Date: Tue, 18 Feb 2025 16:23:17 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=E7=95=8C=E9=9D=A2=E5=A4=B4?= =?UTF-8?q?=E9=83=A8=E6=A0=8F=E5=B8=83=E5=B1=80=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 13 ++-- src/views/customer/CustomerDashboard.vue | 91 ++++++++++++------------ 2 files changed, 55 insertions(+), 49 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 80482b0..c4e94ac 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -48,28 +48,31 @@ const routes = [ path: '/customer', name: 'CustomerDashboard', component: CustomerDashboard, - meta: { requiresAuth: true, role: 'customer', title: '养老系统' }, + meta: { requiresAuth: true, role: 'customer', title: '中医药与心理健康' }, children: [ { path: '/customer/home', name: 'CustomerHome', component: CustomerHome, - meta: { title: '养老系统' } + meta: { title: '中医药与心理健康' } }, { path: '/customer/services', name: 'ServiceAppointment', - component: ServiceAppointment + component: ServiceAppointment, + meta: { title: '中医药与心理健康' } }, { path: '/customer/schedule', name: 'MySchedule', - component: MySchedule + component: MySchedule, + meta: { title: '中医药与心理健康' } }, { path: '/customer/profile', name: 'UserProfile', - component: UserProfile + component: UserProfile, + meta: { title: '中医药与心理健康' } } ] } diff --git a/src/views/customer/CustomerDashboard.vue b/src/views/customer/CustomerDashboard.vue index 34679e6..592e9f2 100644 --- a/src/views/customer/CustomerDashboard.vue +++ b/src/views/customer/CustomerDashboard.vue @@ -1,26 +1,47 @@