tabbar.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. let tab1 = [
  2. {
  3. pagePath: "/pages/index/index",
  4. iconPath: "/static/home.png",
  5. selectedIconPath: "/static/home-active.png",
  6. text: "首页"
  7. },
  8. {
  9. pagePath: "/pages/menu/index",
  10. iconPath: "/static/news.png",
  11. selectedIconPath: "/static/news-active.png",
  12. text: "消息"
  13. },
  14. {
  15. pagePath: "/pages/soldier/user/index",
  16. iconPath: "/static/user.png",
  17. selectedIconPath: "/static/user-active.png",
  18. text: "我的"
  19. }
  20. ]
  21. let tab2 = [
  22. {
  23. pagePath: "/pages/index/index",
  24. iconPath: "/static/home.png",
  25. selectedIconPath: "/static/home-active.png",
  26. text: "首页"
  27. },
  28. {
  29. pagePath: "/pages/menu/index",
  30. iconPath: "/static/news.png",
  31. selectedIconPath: "/static/news-active.png",
  32. text: "消息"
  33. },
  34. {
  35. pagePath: "/pages/merchant/goods/goods",
  36. iconPath: "/static/shop.png",
  37. selectedIconPath: "/static/shop-active.png",
  38. text: "商品管理"
  39. }
  40. ]
  41. let tab3 = [
  42. {
  43. pagePath: "/pages/index/index",
  44. iconPath: "/static/home.png",
  45. selectedIconPath: "/static/home-active.png",
  46. text: "店铺审核"
  47. },
  48. {
  49. pagePath: "/pages/menu/index",
  50. iconPath: "/static/news.png",
  51. selectedIconPath: "/static/news-active.png",
  52. text: "商品审核"
  53. },
  54. {
  55. pagePath: "/pages/manage/account/accountExamine",
  56. iconPath: "/static/shop.png",
  57. selectedIconPath: "/static/shop-active.png",
  58. text: "账户审核"
  59. },
  60. ]
  61. export default {
  62. tab1,
  63. tab2,
  64. tab3
  65. }