<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
分包中如果有6個頁面A B C D E F,這6個頁面可以作為tabbar頁面進行展示,具體設定通過後臺介面返回(頁面數量限制依然存在 2 - 5),比如後臺設定A B C D E這個5個頁面為tabbar頁面,那麼A B C D E將作為tab頁展示,跳轉方式也是tab方式跳轉,跳轉到F頁面為普通navigate跳轉。
這將解決 多商家底部tab設定問題,可以讓商家自己設定小程式tab頁的展示模式。
1.自定義底部導航,資料通過介面獲取
2.將需要設定成tab的頁面內容抽離成為元件,對應頁面直接參照元件,tab頁面參照全部元件,並根據當前tab頁對應的元件頁面路徑分別展示。
3.解決元件的生命週期問題。
頁面整體結構
pages.json頁面設定好5個tabbar模板頁面,並且使用了easycom模式,自動載入元件
"easycom": { "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue", "^sww-(.*)": "@/components/sww-$1/sww-$1.vue" }, "tabBar": { "color": "#7A7E83", "selectedColor": "#3cc51f", "borderStyle": "black", "backgroundColor": "#ffffff", "list": [ { "pagePath": "pages/index/index" }, { "pagePath": "pages/module-page-one/index" }, { "pagePath": "pages/module-page-two/index" }, { "pagePath": "pages/module-page-three/index" }, { "pagePath": "pages/module-page-four/index" } ] }
自定義tabbar使用的uview元件
//sww-tab-bar <template> <u-tabbar v-model="current" :list="vuex_tab_bar.list" :active-color="vuex_tab_bar.activeColor" :inactive-color="vuex_tab_bar.inactiveColor" @change="onChange"></u-tabbar> </template> <script> import {mapState} from 'vuex' import {uniLinkTo} from "../../utils/uniPromise"; export default { data() { return {} }, computed: { ...mapState(['vuex_tab_bar', 'vuex_tab_page']), current: { get(){ return this.$store.state.vuex_tab_bar.current }, set(value){ this.$store.commit('$uStore',{name: 'vuex_tab_bar.current', value}) } } }, methods: { onChange(index) { uniLinkTo(this.vuex_tab_page[index], 'tab') } } } </script> <style lang="scss" scoped> ::v-deep .u-fixed-placeholder { opacity: 0; } </style>
vuex中儲存的tabbar資料格式
vuex_tab_bar: { list: [], activeColor: '', inactiveColor: '', current: 0 }, vuex_tab_bar_default: { //介面未獲取到資料時使用的預設tabbar list: [ { iconPath: '/static/tab/home.png', selectedIconPath: '/static/tab/home_fill.png', text: '首頁', url: '/package/index/index' }, { iconPath: '/static/tab/cat.png', selectedIconPath: '/static/tab/cat_fill.png', text: '分類', url: '/package/product/category/index' }, { iconPath: '/static/tab/community.png', selectedIconPath: '/static/tab/community_fill.png', text: '鏈圈', url: '/package/index/circle/index' }, { iconPath: '/static/tab/cart.png', selectedIconPath: '/static/tab/cart_fill.png', text: '購物車', // url: '/package/user/order/index' url: '/package/user/cart/index' }, { iconPath: '/static/tab/user.png', selectedIconPath: '/static/tab/user_fill.png', text: '我的', url: '/package/user/index' } ], activeColor: '#e93324', inactiveColor: '#666666', current: 0 },
上面的步驟已經完成了自定義底部tabbar,接下來是tab頁面中使用元件的方式和tabbar資料的獲取
//這裡的程式碼是5個模板tab頁面的內容,頁面引入了所有可設定成為tab的元件,js部分抽離到mixins中進行程式碼複用 <template> <view class="index-box"> <block v-if="pageModuleName('/package/index/index')"> <sww-page-home ref="modulePageRef"></sww-page-home> </block> <block v-if="pageModuleName('/package/product/category/index')"> <sww-page-category ref="modulePageRef"></sww-page-category> </block> <block v-if="pageModuleName('/package/index/circle/index')"> <sww-page-circle ref="modulePageRef"></sww-page-circle> </block> <block v-if="pageModuleName('/package/user/cart/index')"> <sww-page-cart ref="modulePageRef"></sww-page-cart> </block> <block v-if="pageModuleName('/package/user/index')"> <sww-page-user ref="modulePageRef"></sww-page-user> </block> <block v-if="pageModuleName('/package/user/order/index')"> <sww-page-order ref="modulePageRef"></sww-page-order> </block> <sww-tab-bar ref="tabBarRef"></sww-tab-bar> <sww-login></sww-login> </view> </template> <script> import {tabPage} from "../../mixins/tabPage"; export default { mixins: [tabPage], data() { return { tabIndex: 4 } } } </script> <style> page { width: 100%; height: 100%; } .index-box { width: 100%; height: 100%; } </style>
// tabPagemixins import {mapState} from 'vuex' const App = getApp() export const tabPage = { computed: { ...mapState(['vuex_tab_bar', 'vuex_module_page']), //獲取當前tab頁要顯示的頁面元件 pageModuleName(name) { return (name) => { if (this.vuex_tab_bar.list.length > 0) { //這裡的url是後臺使用者設定的頁面路徑,此路徑是分包中實際存在的頁面路徑,比如A頁面要設定成為tab,那麼就將A頁面內容抽離成元件,後臺設定此頁面為tab,只需將A頁面的實際路徑進行設定即可 return this.vuex_tab_bar.list[this.tabIndex].url === name } else { return false } } } }, onLoad: function () { this.$nextTick(() => { try { if (this.vuex_tab_bar.list.length === 0) { App.loadTabBarList().then(() => { this.$refs.modulePageRef.$onLoad() }) } else { this.$refs.modulePageRef.$onLoad() } } catch (e) { } }) }, // isoH5在onshow時要重置分享 onShow: function () { this.$nextTick(() => { try { this.$refs.modulePageRef.$onShow() } catch (e) { } }) }, onHide: function () { this.$nextTick(() => { try { this.$refs.modulePageRef.$onHide() } catch (e) { } }) }, onPullDownRefresh: function () { try { this.$refs.modulePageRef.$onPullDownRefresh() } catch (e) { } }, onReachBottom: function () { try { this.$refs.modulePageRef.$onReachBottom() } catch (e) { } }, // 微信小程式分享(好友) onShareAppMessage: function () { return this.$refs.modulePageRef.getShareAppMessage() }, // 微信小程式分享(朋友圈) onShareTimeline: function () { return this.$refs.modulePageRef.getShareTimeline() } }
到此這篇關於uniapp微信小程式底部動態tabBar的文章就介紹到這了,更多相關小程式自定義tabBar底部導航內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45