From 6d009f08368f93713c1ebeca6acde4163042faa4 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Thu, 23 Oct 2025 19:22:32 +0800
Subject: [PATCH] feat: 配置

---
 src/App.vue |   41 +++++++++++++++++++++++------------------
 1 files changed, 23 insertions(+), 18 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index 05e4210..3eb684d 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -4,40 +4,45 @@
  * @LastEditors  : yuan
  * @LastEditTime : 2025-09-28 10:07:55
  * @FilePath     : \src\App.vue
- * @Description  : 
- * Copyright 2025 OBKoro1, All Rights Reserved. 
+ * @Description  :
+ * Copyright 2025 OBKoro1, All Rights Reserved.
  * 2025-09-28 09:31:16
 -->
 <script setup>
-import { onHide, onLaunch, onShow } from "@dcloudio/uni-app"
-import { useAppStore } from "@/store"
-import { mpUpdate } from "@/utils/index"
+import { onHide, onLaunch, onShow } from "@dcloudio/uni-app";
+import { useAppStore } from "@/store";
+import {mpUpdate} from "@/utils/index";
 
-const appStore = useAppStore()
-
+const appStore = useAppStore();
 onLaunch(() => {
-  console.log("App Launch")
+  console.log("App Launch");
 
   // 初始化系统信息
-  appStore.initSystemInfo()
+  appStore.initSystemInfo();
 
   // #ifdef MP-WEIXIN
-  mpUpdate()
+  mpUpdate();
   // #endif
-})
+});
 
 onShow(() => {
-  console.log("App Show")
-})
+  console.log("App Show");
+});
 
 onHide(() => {
-  console.log("App Hide")
-})
-
+  console.log("App Hide");
+});
 </script>
 
 <style lang="scss">
 /* 每个页面公共css */
-@import 'uview-plus/index.scss';
-@import '@/static/styles/common.scss';
+@import "uview-plus/index.scss";
+@import "@/static/styles/common.scss";
+.uni-tabbar__item:nth-child(4) {
+  .uni-tabbar__bd {
+    .uni-tabbar__icon {
+      width: 60px !important;
+    }
+  }
+}
 </style>

--
Gitblit v1.9.3