当前位置:   article > 正文

微信小程序-页面跳转Tabbar

小程序tabbar页面跳转到tabbar页面

官方文档地址:https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#tabBar

首先我们需要搭建一个 Tabbar,在搭建之前我们将需要跳转的页面创建一下待会需要使用到。

创建 me 我的页面,在 pages 当中鼠标右键新建页面即可,在新建一个 order 订单页面,更改 app.json 配置添加 tabBar 配置项:

  1. {
  2. "tabBar": {
  3. "color": "#000000",
  4. "backgroundColor": "#000000",
  5. "list": [
  6. {
  7. "pagePath": "pages/index/index",
  8. "text": "首页",
  9. "iconPath": "/assets/images/cart.png",
  10. "selectedIconPath": "/assets/images/cart-active.png"
  11. },
  12. {
  13. "pagePath": "pages/order/order",
  14. "text": "订单",
  15. "iconPath": "/assets/images/cart.png",
  16. "selectedIconPath": "/assets/images/cart-active.png"
  17. },
  18. {
  19. "pagePath": "pages/me/me",
  20. "text": "我的",
  21. "iconPath": "/assets/images/user.png",
  22. "selectedIconPath": "/assets/images/user-active.png"
  23. }
  24. ]
  25. }
  26. }

图片,需要的私信我。

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/94010
推荐阅读