当前位置:   article > 正文

uni-app:tabBar_uniapp tabbar

uniapp tabbar

创建 tabBar 分支

运行如下的命令,基于 master 分支在本地创建 tabBar 子分支,用来开发和 tabBar 相关的功能:

git checkout -b tabbar

 创建 tabBar 页面

在 pages 目录中,创建首页(home)、分类(cate)、购物车(cart)、我的(my) 这 4 个 tabBar 页面。在 HBuilderX 中,可以通过如下的两个步骤,快速新建页面:

  1. 在 pages 目录上鼠标右键,选择新建页面

  2. 在弹出的窗口中,填写页面的名称勾选 scss 模板之后,点击创建按钮。截图如下:

 

 配置文件格式化 格式化快捷键:shift+alt+f

配置 tabBar 效果

  1. 将 资料 目录下的 static 文件夹 拷贝一份,替换掉项目根目录中的 static 文件夹

  2. 修改项目根目录中的 pages.json 配置文件,新增 tabBar 的配置节点如下:

  1. {
  2. "tabBar": {
  3. "selectedColor": "#C00000",
  4. "list": [
  5. {
  6. "pagePath": "pages/home/home",
  7. "text": "首页",
  8. "iconPath": "static/tab_icons/home.png",
  9. "selectedIconPath": "static/tab_icons/home-active.png"
  10. },
  11. {
  12. "pagePath": "pages/cate/cate",
  13. "text": "分类",
  14. "iconPath": "static/tab_icons/cate.png",
  15. "selectedIconPath": "static/tab_icons/cate-active.png"
  16. },
  17. {
  18. "pagePath": "pages/cart/cart",
  19. "text": "购物车",
  20. "iconPath": "static/tab_icons/cart.png",
  21. "selectedIconPath": "static/tab_icons/cart-active.png"
  22. },
  23. {
  24. "pagePath": "pages/my/my",
  25. "text": "我的",
  26. "iconPath": "static/tab_icons/my.png",
  27. "selectedIconPath": "static/tab_icons/my-active.png"
  28. }
  29. ]
  30. }
  31. }

删除默认的 index 首页

  1. 在 HBuilderX 中,把 pages 目录下的 index首页文件夹 删除掉

  2. 同时,把 page.json 中记录的 index 首页 路径删除掉

  3. 为了防止小程序运行失败,在微信开发者工具中,手动删除 pages 目录下的 index 首页文件夹

  4. 同时,把 components 目录下的 uni-link 组件文件夹 删除掉

 

修改导航条的样式效果

  1. 打开 pages.json 这个全局的配置文件

  2. 修改 globalStyle 节点如下:

  1. "globalStyle": {
  2. "navigationBarTextStyle": "white",
  3. "navigationBarTitleText": "优购APP",
  4. "navigationBarBackgroundColor": "#c00000",
  5. "backgroundColor": "#ffffff",
  6. "app-plus": {
  7. "background": "#efeff4"
  8. }
  9. }

 这里要注意的是需要把page中的style中的navigationBarTitleText删除掉,否则显示不出来

分支的提交与合并

将本地的 tabbar 分支进行本地的 commit 提交:

  1. git add .
  2. git commit -m "完成了 tabBar 的开发"

将本地的 tabbar 分支推送到远程仓库进行保存:

git push -u origin tabbar

但是github上去还没有分支的,因此要把仓库push上去 

将本地的 tabbar 分支合并到本地的 master 分支:

  1. git checkout master
  2. git merge tabbar

删除本地的 tabbar 分支:

git branch -d tabbar

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/113097
推荐阅读
相关标签
  

闽ICP备14008679号