tabbar.js 511 B

12345678910111213141516171819
  1. export const tabbar = [{
  2. iconPath: '../../static/tabBar/home.png',
  3. selectedIconPath: '../../static/tabBar/home-action.png',
  4. text: '首页',
  5. pagePath: '/pages/index/index'
  6. },
  7. {
  8. iconPath: '../../static/tabBar/center.png',
  9. selectedIconPath: '../../static/tabBar/center-action.png',
  10. text: '审核',
  11. pagePath: '/pages/user/applyList'
  12. },
  13. {
  14. iconPath: '../../static/tabBar/user.png',
  15. selectedIconPath: '../../static/tabBar/user-action.png',
  16. text: '我的',
  17. pagePath: '/pages/user/user'
  18. }
  19. ]