From 0e6c4eba4782e204a1c2455a43dd4ce4c428d307 Mon Sep 17 00:00:00 2001 From: significative <163999932+significative@users.noreply.github.com> Date: Mon, 23 Sep 2024 15:48:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E5=90=8D=E4=BF=A1=E6=81=AF=E7=A1=AE?= =?UTF-8?q?=E8=AE=A4=E9=A1=B5=E9=9D=A2(=E4=B8=AA=E4=BA=BA)=20=E9=9D=99?= =?UTF-8?q?=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/module/constRouter/index.ts | 18 +- .../index.vue | 4 +- src/views/registrationPersonage/index.vue | 441 ++++++++++++++++++ 3 files changed, 457 insertions(+), 6 deletions(-) rename src/views/{registration => registrationGroup}/index.vue (99%) create mode 100644 src/views/registrationPersonage/index.vue diff --git a/src/router/module/constRouter/index.ts b/src/router/module/constRouter/index.ts index c913928..fd4abab 100644 --- a/src/router/module/constRouter/index.ts +++ b/src/router/module/constRouter/index.ts @@ -61,12 +61,22 @@ export const constRouter: any = }, }, { - path: '/registration', - name: 'Registration', - component: () => import('@/views/registration/index.vue'), + path: '/registrationGroup', + name: 'RegistrationGroup', + component: () => import('@/views/registrationGroup/index.vue'), meta: { icon: '', - title: '报名信息', + title: '报名信息确认/团队', + hidden: false, + }, + }, + { + path: '/registrationPersonage', + name: 'RegistrationPersonage', + component: () => import('@/views/registrationPersonage/index.vue'), + meta: { + icon: '', + title: '报名信息确认/个人', hidden: false, }, }, diff --git a/src/views/registration/index.vue b/src/views/registrationGroup/index.vue similarity index 99% rename from src/views/registration/index.vue rename to src/views/registrationGroup/index.vue index dae26a9..8bb593f 100644 --- a/src/views/registration/index.vue +++ b/src/views/registrationGroup/index.vue @@ -1,5 +1,5 @@