pages.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "门墩儿招聘"
  7. }
  8. },
  9. {
  10. "path": "pages/index/position",
  11. "style": {
  12. "navigationBarTitleText": "职位"
  13. }
  14. },
  15. {
  16. "path": "pages/index/my",
  17. "style": {
  18. "navigationBarTitleText": "我的"
  19. }
  20. },
  21. {
  22. "path": "pages/login/index",
  23. "style": {
  24. "navigationBarTitleText": "登录/注册"
  25. }
  26. }
  27. ],
  28. "globalStyle": {
  29. "navigationBarTextStyle": "black",
  30. "navigationBarTitleText": "门墩儿招聘",
  31. "navigationBarBackgroundColor": "#ffffff",
  32. "backgroundColor": "#ffffff"
  33. },
  34. "tabBar": {
  35. "color": "#000",
  36. "selectedColor": "#00897B",
  37. "borderStyle": "black",
  38. "backgroundColor": "#ffffff",
  39. "height": "65px",
  40. "fontSize": "24rpx",
  41. "list": [
  42. {
  43. "pagePath": "pages/index/index",
  44. "text": "首页",
  45. "iconPath": "/static/img/home.png",
  46. "selectedIconPath": "/static/img/home-fill.png"
  47. },
  48. {
  49. "pagePath": "pages/index/position",
  50. "text": "职位",
  51. "iconPath": "/static/img/position.png",
  52. "selectedIconPath": "/static/img/position-fill.png"
  53. },
  54. {
  55. "pagePath": "pages/index/my",
  56. "text": "我的",
  57. "iconPath": "/static/img/my.png",
  58. "selectedIconPath": "/static/img/my-fill.png"
  59. }
  60. ]
  61. }
  62. }