diff --git a/src/router/index.js b/src/router/index.js index a30ce41..6978fd4 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -25,7 +25,7 @@ const router = createRouter({ { path: '/agency-center', name: 'agency-center', - component: () => import('../views/AgencyCenterView.vue'), + component: () => import('../views/Agency/AgencyCenterView.vue'), meta: { requiresAuth: true }, }, { @@ -49,7 +49,7 @@ const router = createRouter({ { path: '/message', name: 'message', - component: () => import('../views/MessageView.vue'), + component: () => import('../views/Agency/MessageView.vue'), meta: { requiresAuth: true }, }, { @@ -103,13 +103,13 @@ const router = createRouter({ { path: '/team-bill', name: 'team-bill', - component: () => import('../views/TeamBillView.vue'), + component: () => import('../views/Agency/TeamBillView.vue'), meta: { requiresAuth: true }, }, { path: '/team-member', name: 'team-member', - component: () => import('../views/TeamMemberView.vue'), + component: () => import('../views/Agency/TeamMemberView.vue'), meta: { requiresAuth: true }, }, { diff --git a/src/views/AgencyCenterView.vue b/src/views/Agency/AgencyCenterView.vue similarity index 97% rename from src/views/AgencyCenterView.vue rename to src/views/Agency/AgencyCenterView.vue index 1600f67..25951d5 100644 --- a/src/views/AgencyCenterView.vue +++ b/src/views/Agency/AgencyCenterView.vue @@ -23,9 +23,9 @@ " > {{ t('my_account') }} - + - + @@ -68,7 +68,7 @@ style="width: 32px; height: 32px; border: none; background: none; font-size: 16px" @click="gotoEdit" > - + @@ -129,7 +129,7 @@
- {{ t('host_salary') }} {{ teamBillInfo.hostSalary || '–' }} + {{ t('host_salary') }}: {{ teamBillInfo.hostSalary || '–' }}
- {{ t('agent_salary') }} {{ teamBillInfo.agentSalary || '–' }} + {{ t('agent_salary') }}: {{ teamBillInfo.agentSalary || '–' }}
-
{{ t('total') }} {{ teamBillInfo.total || '–' }}
+
{{ t('total') }}: {{ teamBillInfo.total || '–' }}
@@ -156,17 +156,18 @@ + +