From d64ee1cb80d8e358c0a54904b6819ec86f832b69 Mon Sep 17 00:00:00 2001 From: h_mo <596417202@qq.com> Date: Mon, 1 May 2023 13:20:33 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E4=BC=98=E5=8C=96=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E4=BD=93=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Navbar/index.vue | 4 ++-- src/hooks/{ => app}/useGlobalStyle.ts | 0 src/hooks/{ => app}/useSystem.ts | 0 src/pages/about/index.vue | 2 +- src/pages/log/index.vue | 10 +++++----- src/pages/login/index.vue | 19 +++++++++++-------- src/router/guard.ts | 3 ++- src/utils/interceptors/index.ts | 5 ++--- src/utils/uniapi/index.ts | 2 +- 9 files changed, 24 insertions(+), 21 deletions(-) rename src/hooks/{ => app}/useGlobalStyle.ts (100%) rename src/hooks/{ => app}/useSystem.ts (100%) diff --git a/src/components/Navbar/index.vue b/src/components/Navbar/index.vue index 1d33884..4f6e1ee 100644 --- a/src/components/Navbar/index.vue +++ b/src/components/Navbar/index.vue @@ -3,11 +3,11 @@ * 头部导航栏 * @description 所有尺寸都用px2rpx做适配 */ -import { useSystem } from '@/hooks/useSystem'; +import { useSystem } from '@/hooks/app/useSystem'; import { px2rpx } from '@/utils/uniapi'; import { computed, ref } from 'vue'; import { useRoute, useRouter } from 'uni-mini-router'; -import { useGlobalStyle } from '@/hooks/useGlobalStyle'; +import { useGlobalStyle } from '@/hooks/app/useGlobalStyle'; import Iconify from '@/components/Iconify/index.vue'; import { HOME_PAGE } from '@/enums/routerEnum'; diff --git a/src/hooks/useGlobalStyle.ts b/src/hooks/app/useGlobalStyle.ts similarity index 100% rename from src/hooks/useGlobalStyle.ts rename to src/hooks/app/useGlobalStyle.ts diff --git a/src/hooks/useSystem.ts b/src/hooks/app/useSystem.ts similarity index 100% rename from src/hooks/useSystem.ts rename to src/hooks/app/useSystem.ts diff --git a/src/pages/about/index.vue b/src/pages/about/index.vue index fe89150..e79fb51 100644 --- a/src/pages/about/index.vue +++ b/src/pages/about/index.vue @@ -33,7 +33,7 @@ const handleLoginOut = () => { {{ isLogin ? '测试' : '未登入' }} - log + log 登出 登入 diff --git a/src/pages/log/index.vue b/src/pages/log/index.vue index 1fb423a..fb1bc4a 100644 --- a/src/pages/log/index.vue +++ b/src/pages/log/index.vue @@ -1,13 +1,13 @@ - - + + diff --git a/src/pages/login/index.vue b/src/pages/login/index.vue index 21ad218..213609a 100644 --- a/src/pages/login/index.vue +++ b/src/pages/login/index.vue @@ -1,15 +1,16 @@