设置tabBar
- 需求的场景描述(希望解决的问题) 设置tabBar 功能不完善,现有的功能只是提供了图标、文字动态改变,不能实现pagePath 的动态改变。 - 希望提供的能力 急需pagePath 的动态改变功能。其他:Tab的数量动态改变功能。比如2-5个直接动态增删。 wx.setTabBarItem({ index: 0, text: '预约访问', iconPath: '/image/visit_gray.png', selectedIconPath: '/image/visit_green.png', pagePath: "pages/visit/visit", }); wx.setTabBarItem({ index: 1, text: '预约管理', iconPath: '/image/manage_gray.png', selectedIconPath: '/image/manage_green.png', pagePath: "pages/manage/manage", }); wx.setTabBarItem({ index: 2, text: '个人中心', iconPath: '/image/person_gray.png', selectedIconPath: '/image/person_green.png', pagePath: "pages/person/person", });