chore(代理中心页): 调整文件结构

This commit is contained in:
hzj 2025-11-21 10:13:37 +08:00
parent 75ba9144d5
commit 5385e03ee5
8 changed files with 6 additions and 6 deletions

View File

@ -25,7 +25,7 @@ const router = createRouter({
{
path: '/agency-center',
name: 'agency-center',
component: () => import('../views/Agency/AgencyCenterView.vue'),
component: () => import('../views/AgencyCenter/index.vue'),
meta: { requiresAuth: true },
},
{
@ -49,7 +49,7 @@ const router = createRouter({
{
path: '/message',
name: 'message',
component: () => import('../views/Agency/MessageView.vue'),
component: () => import('../views/AgencyCenter/Message.vue'),
meta: { requiresAuth: true },
},
{
@ -79,7 +79,7 @@ const router = createRouter({
{
path: '/agency-setting',
name: 'agency-setting',
component: () => import('../views/Agency/AgencySettingView.vue'),
component: () => import('../views/AgencyCenter/AgencySetting.vue'),
meta: { requiresAuth: true },
},
{
@ -97,19 +97,19 @@ const router = createRouter({
{
path: '/invite-members',
name: 'invite-members',
component: () => import('../views/Agency/InviteMembersView.vue'),
component: () => import('../views/AgencyCenter/InviteMembers.vue'),
meta: { requiresAuth: true },
},
{
path: '/team-bill',
name: 'team-bill',
component: () => import('../views/Agency/TeamBillView.vue'),
component: () => import('../views/AgencyCenter/TeamBill.vue'),
meta: { requiresAuth: true },
},
{
path: '/team-member',
name: 'team-member',
component: () => import('../views/Agency/TeamMemberView.vue'),
component: () => import('../views/AgencyCenter/TeamMember.vue'),
meta: { requiresAuth: true },
},
{