简介:本文讲解uniapp怎么配置tarBar,下方的状态栏。
第一步
第二步
插入代码:
"tabBar": { "color":"#666", // 没有被选择的时候的颜色 "selectedColor":"#31C27C", // 被选中之后的颜色 "list":[ { "text":"首页", // 文本信息 "pagePath":"pages/index/index", // 对应的路径 "iconPath":"static/images/home.png", // 图标信息 "selectedIconPath":"static/images/home-h.png" // 被选中之后的图标 }, { "text":"个人", // 文本信息 "pagePath":"pages/user/user", // 对应的路径 "iconPath":"static/images/user.png", // 图标信息 "selectedIconPath":"static/images/user-h.png" // 被选中之后的图标 } ] }
运行结果: