Procházet zdrojové kódy

fix(icon): uni-icon 在微信不支持颜色,改用unocss-icons

Burt před 2 roky
rodič
revize
821117f529

+ 2 - 1
.vscode/settings.json

@@ -28,5 +28,6 @@
   "files.associations": {
     "pages.json": "jsonc", // pages.json 可以写注释
     "manifest.json": "jsonc" // manifest.json 可以写注释
-  }
+  },
+  "cSpell.words": ["Tabbar"]
 }

+ 2 - 2
README.md

@@ -8,9 +8,9 @@
 
 - 📑 pinia+适用于多端的持久化方案
 
-- 🎨 [UnoCSS](https://github.com/unocss/unocss) - 高性能且极具灵活性的即时原子化 CSS 引擎
+- 🎨 [UnoCSS](https://unocss.dev/) - 高性能且极具灵活性的即时原子化 CSS 引擎
 
-- 😃 [各种图标集为你所用](https://github.com/antfu/unocss/tree/main/packages/preset-icons)
+- 😃 [UnoCSS Icons](https://unocss.dev/presets/icons), [海量图标-https://icones.js.org/](https://icones.js.org/)
 
 - 🔥 使用 [新的 `<script setup>` 语法](https://github.com/vuejs/rfcs/pull/227)
 

+ 17 - 5
src/components/fly-navbar/fly-navbar.vue

@@ -1,22 +1,34 @@
 <template>
   <!-- 自定义导航栏: 默认透明不可见, scroll-view 滚动到 50 时展示 -->
   <view class="fly-navbar" :style="{ paddingTop: safeAreaInsets?.top + 'px' }">
-    <navigator v-if="pages.length > 1" open-type="navigateBack" class="back">
-      <uni-icons type="left" color="white" size="24" />
+    <!-- 1/3,多于1个页面,用返回图标 -->
+    <navigator v-if="pages.length > 1" open-type="navigateBack" class="left-icon">
+      <button class="i-carbon-chevron-left text-white"></button>
     </navigator>
-    <navigator v-else open-type="switchTab" url="/pages/index/index" class="back">
-      <uni-icons type="home" color="white" size="24" />
+    <!-- 2/3,只有1个页面,如果不是tabbar,需要首页图标 -->
+    <!-- 这种情况一般出现在用户直接打开分享出去的详情页面,或者使用redirectTo等API -->
+    <navigator
+      v-else-if="isTabbar"
+      open-type="switchTab"
+      url="/pages/index/index"
+      class="left-icon"
+    >
+      <button class="i-carbon-home text-white"></button>
     </navigator>
+    <!-- 如果当前页就是tabbar页,不用去首页,也就是什么图标都不需要 -->
     <view class="title">{{ title || '' }}</view>
   </view>
 </template>
 
 <script lang="ts" setup>
+import { getIsTabbar } from '@/utils/index'
+
 defineProps<{ title?: string }>()
 // 获取屏幕边界到安全区域距离
 const { safeAreaInsets } = uni.getSystemInfoSync()
 // 获取页面栈
 const pages = getCurrentPages()
+const isTabbar = getIsTabbar()
 </script>
 
 <style lang="scss" scoped>
@@ -29,7 +41,7 @@ const pages = getCurrentPages()
   color: #000;
   background-color: transparent;
 
-  .back {
+  .left-icon {
     position: absolute;
     left: 0;
     display: flex;

+ 10 - 0
src/pages.json

@@ -26,5 +26,15 @@
       "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
     }
   },
+  "tabBar": {
+    "list": [
+      {
+        "pagePath": "pages/index/index"
+      },
+      {
+        "pagePath": "pages/my/index"
+      }
+    ]
+  },
   "subPackages": []
 }

+ 13 - 0
src/utils/index.ts

@@ -0,0 +1,13 @@
+import pagesJson from '@/pages.json'
+
+console.log(pagesJson)
+
+/** 判断当前页面是否是tabbar页  */
+export const getIsTabbar = () => {
+  if (!pagesJson.tabBar) {
+    return false
+  }
+  const pages = getCurrentPages()
+  const currPath = pages.at(-1).route
+  return !!pagesJson.tabBar.list.find((e) => e.pagePath === currPath)
+}