mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-29 13:33:57 +08:00
67 lines
2.0 KiB
Vue
67 lines
2.0 KiB
Vue
<script setup lang="ts">
|
|
import { tabbarStore } from './tabbar'
|
|
// 'i-carbon-code',
|
|
import { tabbarList as _tabBarList, cacheTabbarEnable, selectedTabbarStrategy, TABBAR_MAP } from './tabbarList'
|
|
|
|
const customTabbarEnable
|
|
= selectedTabbarStrategy === TABBAR_MAP.CUSTOM_TABBAR_WITH_CACHE
|
|
|| selectedTabbarStrategy === TABBAR_MAP.CUSTOM_TABBAR_WITHOUT_CACHE
|
|
|
|
/** tabbarList 里面的 path 从 pages.config.ts 得到 */
|
|
const tabbarList = _tabBarList.map(item => ({ ...item, path: `/${item.pagePath}` }))
|
|
function selectTabBar({ value: index }: { value: number }) {
|
|
const url = tabbarList[index].path
|
|
tabbarStore.setCurIdx(index)
|
|
if (cacheTabbarEnable) {
|
|
uni.switchTab({ url })
|
|
}
|
|
else {
|
|
uni.navigateTo({ url })
|
|
}
|
|
}
|
|
onLoad(() => {
|
|
// 解决原生 tabBar 未隐藏导致有2个 tabBar 的问题
|
|
const hideRedundantTabbarEnable = selectedTabbarStrategy === TABBAR_MAP.CUSTOM_TABBAR_WITH_CACHE
|
|
hideRedundantTabbarEnable
|
|
&& uni.hideTabBar({
|
|
fail(err) {
|
|
console.log('hideTabBar fail: ', err)
|
|
},
|
|
success(res) {
|
|
console.log('hideTabBar success: ', res)
|
|
},
|
|
})
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<wd-tabbar
|
|
v-if="customTabbarEnable"
|
|
v-model="tabbarStore.curIdx"
|
|
|
|
safe-area-inset-bottom bordered placeholder fixed
|
|
@change="selectTabBar"
|
|
>
|
|
<block v-for="(item, idx) in tabbarList" :key="item.path">
|
|
<wd-tabbar-item v-if="item.iconType === 'uiLib'" :title="item.text" :icon="item.icon" />
|
|
<wd-tabbar-item
|
|
v-else-if="item.iconType === 'unocss' || item.iconType === 'iconfont'"
|
|
:title="item.text"
|
|
>
|
|
<template #icon>
|
|
<view
|
|
h-40rpx
|
|
w-40rpx
|
|
:class="[item.icon, idx === tabbarStore.curIdx ? 'is-active' : 'is-inactive']"
|
|
/>
|
|
</template>
|
|
</wd-tabbar-item>
|
|
<wd-tabbar-item v-else-if="item.iconType === 'local'" :title="item.text">
|
|
<template #icon>
|
|
<image :src="item.icon" h-40rpx w-40rpx />
|
|
</template>
|
|
</wd-tabbar-item>
|
|
</block>
|
|
</wd-tabbar>
|
|
</template>
|