From c6543282d1884770f920cb673bc2f23a3e86f097 Mon Sep 17 00:00:00 2001 From: yuyuer13 <47338587@qq.com> Date: Wed, 22 Jan 2025 23:01:22 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=BD=95=E5=92=8C=E6=B3=A8=E5=86=8C?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- abc.html | 27 +++++++++++++++++++++++++++ src/api/system/user/index.ts | 3 ++- src/router/modules/flowrouter.ts | 10 ++++++++++ src/views/flow/Home.vue | 10 +++++----- src/views/flow/Register.vue | 22 +++++++++++++++++----- src/views/system/dept/index.vue | 1 + 6 files changed, 62 insertions(+), 11 deletions(-) create mode 100644 abc.html diff --git a/abc.html b/abc.html new file mode 100644 index 000000000..aa2ac4c8b --- /dev/null +++ b/abc.html @@ -0,0 +1,27 @@ + + +
+ + + + diff --git a/src/api/system/user/index.ts b/src/api/system/user/index.ts index beb6e5154..c9b572992 100644 --- a/src/api/system/user/index.ts +++ b/src/api/system/user/index.ts @@ -1,13 +1,14 @@ import request from '@/config/axios' export interface UserVO { - id: number + id?: number username: string nickname: string deptId: number postIds: string[] email: string mobile: string + password: string sex: number avatar: string loginIp: string diff --git a/src/router/modules/flowrouter.ts b/src/router/modules/flowrouter.ts index fe2b1b67e..468312e24 100644 --- a/src/router/modules/flowrouter.ts +++ b/src/router/modules/flowrouter.ts @@ -19,6 +19,11 @@ export default [ path: 'contact', name: 'contact', component: () => import('@/views/flow/Contact.vue') + }, + { + path: 'features', + name: 'features', + component: () => import('@/views/flow/Features.vue') } ] }, @@ -59,5 +64,10 @@ export default [ path: '/register', name: 'Register', component: () => import('@/views/flow/Register.vue') + }, + { + path: '/login2', + name: 'Login2', + component: () => import('@/views/flow/Login.vue') } ] diff --git a/src/views/flow/Home.vue b/src/views/flow/Home.vue index fcb9bc5fc..f125a031e 100644 --- a/src/views/flow/Home.vue +++ b/src/views/flow/Home.vue @@ -6,13 +6,13 @@