#### 1. 前言 --- tabBar 配置:[https://uniapp.dcloud.io/collocation/pages?id=tabbar](https://uniapp.dcloud.io/collocation/pages?id=tabbar) 修改 `page.json`, 在文件中添加以下內(nèi)容(tabBar 和 globalStyle同級(jí)) #### 2. 使用示例 --- ```json "tabBar": { "color": "#7A7E83", "selectedColor": "#3cc51f", "backgroundColor": "#ffffff", "list": [ { "pagePath": "pages/index/index", "iconPath": "static/tabBar/home.png", "selectedIconPath": "static/tabBar/homeSelected.png", "text": "首頁(yè)" }, { "pagePath": "pages/test/test", "iconPath": "static/tabBar/my.png", "selectedIconPath": "static/tabBar/mySelected.png", "text": "我的" } ] } ``` | 屬性 | 是否必填 | 描述 | | ------------ | ------------ |------------ | | color | 是 | 文字默認(rèn)顏色(未選中時(shí)的顏色) | | selectedColor | 是 | 文字選中時(shí)的顏色 | | backgroundColor | 是 | tab 背景顏色 | | list | 是 | tab 的菜單列表 |