tabbar.js 664 B

123456789101112131415161718192021222324252627
  1. //tabber配置
  2. export const tabBarList = [
  3. {
  4. "pagePath": "/pages/index/index",
  5. "text": "应用主页",
  6. "iconPath": "/static/tabbar/home.png",
  7. "selectedIconPath": "/static/tabbar/home_select.png"
  8. }, {
  9. "pagePath": "/pages/taskInfo/taskInfo",
  10. "text": "任务消息",
  11. "iconPath": "/static/tabbar/news.png",
  12. "selectedIconPath": "/static/tabbar/news_select.png"
  13. },{
  14. "pagePath": "/pages/my/my",
  15. "text": "我的",
  16. "iconPath": "/static/tabbar/my.png",
  17. "selectedIconPath": "/static/tabbar/my_select.png"
  18. }
  19. ]
  20. export const tabbarClick = (index)=>{
  21. uni.navigateTo({
  22. url: tabBarList[index].pagePath
  23. });
  24. }
  25. export const hoverColor = "#554d84"