tabbar.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. export const tabbar = {
  2. color: "#9A9A9A",
  3. selectedColor: "#323C5B",
  4. borderStyle: "black",
  5. backgroundColor: "#ffffff",
  6. list: [{
  7. pagePath: "/pages/index/index",
  8. iconPath: "../static/tabbar/tab-home.png",
  9. selectedIconPath: "../static/tabbar/tab-home-current.png",
  10. text: "在线评价",
  11. }, {
  12. pagePath: "/pages/user/user",
  13. iconPath: "../static/tabbar/tab-my.png",
  14. selectedIconPath: "../static/tabbar/tab-my-current.png",
  15. text: "个人中心"
  16. }]
  17. }
  18. export const tabbar1 = {
  19. color: "#9A9A9A",
  20. selectedColor: "#323C5B",
  21. borderStyle: "black",
  22. backgroundColor: "#ffffff",
  23. list: [{
  24. pagePath: "/pages/index/index",
  25. iconPath: "../static/tabbar/tab-home.png",
  26. selectedIconPath: "../static/tabbar/tab-home-current.png",
  27. text: "在线评价",
  28. },
  29. {
  30. pagePath: "/pages/user/grade",
  31. iconPath: "../static/tabbar/tab-grade.png",
  32. selectedIconPath: "../static/tabbar/tab-grade-current.png",
  33. text: "我的得分"
  34. }, {
  35. pagePath: "/pages/user/user",
  36. iconPath: "../static/tabbar/tab-my.png",
  37. selectedIconPath: "../static/tabbar/tab-my-current.png",
  38. text: "个人中心"
  39. }
  40. ]
  41. }