diff --git a/.env b/.env index 7581a93..a9a2aae 100644 --- a/.env +++ b/.env @@ -1,11 +1,7 @@ # 项目根目录 VITE_BASE_URL=/ # 项目名称 -VITE_APP_NAME=EnchAdmin - -VITE_APP_TITLE=Ench管理系统 - -VITE_APP_DESC=EnchAdmin是一个中后台管理系统模版 +VITE_APP_NAME=Nova - Admin # 路由模式 VITE_ROUTE_MODE = web diff --git a/README.md b/README.md index 6f74a96..a5fe8c7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@
-

Ench Admin

+

Nova Admin

diff --git a/index.html b/index.html index 806eb77..e10ae82 100644 --- a/index.html +++ b/index.html @@ -1,14 +1,20 @@ - - - - - %VITE_APP_TITLE% - - -
-
- - + + + + + %VITE_APP_NAME% + + +
+
+ + diff --git a/package.json b/package.json index 52815c5..bff3c15 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "ench-admin", + "name": "nova-admin", "version": "0.1.0", "private": true, "description": "", diff --git a/src/components/common/appLoading.vue b/src/components/common/appLoading.vue index e71f3d9..c3709c3 100644 --- a/src/components/common/appLoading.vue +++ b/src/components/common/appLoading.vue @@ -1,7 +1,7 @@ diff --git a/src/hooks/useSystem.ts b/src/hooks/useSystem.ts index a8d47c5..112329d 100644 --- a/src/hooks/useSystem.ts +++ b/src/hooks/useSystem.ts @@ -4,24 +4,14 @@ import { isArray, isString } from '@/utils' interface AppInfo { /** 项目名称 */ name: string - /** 项目标题 */ - title: string - /** 项目描述 */ - desc: string } /** 项目信息 */ export function useAppInfo(): AppInfo { - const { - VITE_APP_NAME: name, - VITE_APP_TITLE: title, - VITE_APP_DESC: desc, - } = import.meta.env + const { VITE_APP_NAME: name } = import.meta.env return { name, - title, - desc, } } @@ -29,21 +19,19 @@ export function useAppInfo(): AppInfo { export function usePermission() { const authStore = useAuthStore() - function hasPermission(permission: Auth.RoleType | Auth.RoleType[] | undefined) { - if (!permission) - return true + function hasPermission( + permission: Auth.RoleType | Auth.RoleType[] | undefined, + ) { + if (!permission) return true - if (!authStore.userInfo) - return false + if (!authStore.userInfo) return false const { role } = authStore.userInfo let has = role === 'super' if (!has) { - if (isArray(permission)) - has = (permission).includes(role) + if (isArray(permission)) has = permission.includes(role) - if (isString(permission)) - has = (permission) === role + if (isString(permission)) has = permission === role } return has } diff --git a/src/layouts/components/common/Watermark.vue b/src/layouts/components/common/Watermark.vue index f021831..61de03c 100644 --- a/src/layouts/components/common/Watermark.vue +++ b/src/layouts/components/common/Watermark.vue @@ -1,16 +1,18 @@