From 421ec1cb3da54f64562743f6518c9cbb2e28936f Mon Sep 17 00:00:00 2001 From: h_mo <596417202@qq.com> Date: Fri, 31 Mar 2023 16:16:36 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E4=BC=98=E5=8C=96=E9=83=A8=E5=88=86?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 2 +- package.json | 10 +++++----- src/components/AppProvider/inedx.vue | 2 +- src/pages.json | 9 ++++----- src/pages/index/index.vue | 5 ++++- src/pages/login/index.vue | 2 +- 6 files changed, 16 insertions(+), 14 deletions(-) diff --git a/.env b/.env index e1b1258..20ee9a9 100644 --- a/.env +++ b/.env @@ -1,2 +1,2 @@ # title -VITE_APP_TITLE = uni-app Vue3 TypeScript +VITE_APP_TITLE = Uni-app Vue3 Ts --Vite diff --git a/package.json b/package.json index 2cb110c..e659065 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "@dcloudio/uni-quickapp-webview": "3.0.0-alpha-3071220230324001", "@fortawesome/fontawesome-free": "^6.4.0", "@iconify/iconify": "^3.1.0", - "alova": "^2.0.9", + "alova": "^2.0.11", "crypto-js": "^4.1.1", "echarts": "^5.4.2", "lodash-es": "^4.17.21", @@ -63,14 +63,14 @@ "vue": "^3.2.47" }, "devDependencies": { - "@commitlint/cli": "^17.5.0", + "@commitlint/cli": "^17.5.1", "@commitlint/config-conventional": "^17.4.4", "@dcloudio/types": "^3.2.11", "@dcloudio/uni-automator": "3.0.0-alpha-3071220230324001", "@dcloudio/uni-cli-shared": "3.0.0-alpha-3071220230324001", "@dcloudio/uni-stacktracey": "3.0.0-alpha-3071220230324001", "@dcloudio/vite-plugin-uni": "3.0.0-alpha-3071220230324001", - "@iconify/json": "^2.2.40", + "@iconify/json": "^2.2.42", "@types/crypto-js": "^4.1.1", "@types/lodash-es": "^4.17.7", "@types/node": "^17.0.45", @@ -79,14 +79,14 @@ "@typescript-eslint/parser": "^5.57.0", "@unocss/preset-icons": "^0.46.5", "autoprefixer": "^10.4.14", - "eslint": "^8.36.0", + "eslint": "^8.37.0", "eslint-plugin-vue": "^9.10.0", "husky": "^8.0.3", "lint-staged": "^13.2.0", "postcss": "^8.4.21", "prettier": "^2.8.7", "sass": "^1.60.0", - "typescript": "^5.0.2", + "typescript": "^5.0.3", "unocss": "^0.46.5", "unocss-preset-weapp": "^0.2.5", "vite": "^4.2.1" diff --git a/src/components/AppProvider/inedx.vue b/src/components/AppProvider/inedx.vue index d502d05..245ebfe 100644 --- a/src/components/AppProvider/inedx.vue +++ b/src/components/AppProvider/inedx.vue @@ -1,6 +1,6 @@ diff --git a/src/pages.json b/src/pages.json index 791b3d3..56f366d 100644 --- a/src/pages.json +++ b/src/pages.json @@ -3,8 +3,7 @@ { "path": "pages/index/index", "style": { - "navigationBarTitleText": "首页", - "navigationStyle": "custom" + "navigationBarTitleText": "Home" }, "meta": { "ignoreAuth": true @@ -96,8 +95,8 @@ "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "uni-app", - "navigationBarBackgroundColor": "#262833", - "backgroundColor": "#F8F8F8", + "navigationBarBackgroundColor": "#F2F2F2", + "backgroundColor": "#F2F2F2", "navigationStyle": "default", "renderingMode": "seperated", "pageOrientation": "portrait" @@ -105,7 +104,7 @@ "tabBar": { "color": "#474747", "selectedColor": "#9BC6FC", - "backgroundColor": "#FFFFFF", + "backgroundColor": "#F2F2F2", "list": [ { "pagePath": "pages/index/index", diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index 141d583..6e9a83c 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -6,8 +6,11 @@ import { useRouter } from '@/hooks/router'; import { CURRENT_PLATFORM, PLATFORMS } from '@/enums/platformEnum'; import { judgePlatform } from '@/utils/platform'; import Iconify from '@/components/Iconify/index.vue'; +import { getEnvValue } from '@/utils/env'; -const title = ref('uni-app vue3 ts --Vite'); +const appTitle = getEnvValue('VITE_APP_TITLE'); + +const title = ref(appTitle); const platform = CURRENT_PLATFORM; diff --git a/src/pages/login/index.vue b/src/pages/login/index.vue index 60da05d..ee8e084 100644 --- a/src/pages/login/index.vue +++ b/src/pages/login/index.vue @@ -26,7 +26,7 @@ const submit = (e: any) => { authStore.setToken(res.token); setTimeout(() => { if (redirect.value) { - router.go(redirect.value, { replace: true }); + router.go(redirect.value!, { replace: true }); return; } router.pushTab('/pages/about/index');