pages.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. "globalStyle": {
  23. "navigationBarTextStyle": "black",
  24. "navigationBarTitleText": "门墩儿招聘",
  25. "navigationBarBackgroundColor": "#ffffff",
  26. "backgroundColor": "#ffffff"
  27. },
  28. "tabBar": {
  29. "color": "#000",
  30. "selectedColor": "#00897B",
  31. "borderStyle": "black",
  32. "backgroundColor": "#ffffff",
  33. "height": "50px",
  34. "fontSize": "30rpx",
  35. "iconWidth": "24px",
  36. "spacing": "3px",
  37. "iconfontSrc":"/static/iconfont.ttf",
  38. "list": [
  39. {
  40. "pagePath": "pages/index/index",
  41. "text": "首页",
  42. "iconPath": "/static/img/home.png",
  43. "selectedIconPath": "/static/img/home-fill.png"
  44. },
  45. {
  46. "pagePath": "pages/index/position",
  47. "text": "职位",
  48. "iconPath": "/static/img/position.png",
  49. "selectedIconPath": "/static/img/position-fill.png"
  50. },
  51. {
  52. "pagePath": "pages/index/my",
  53. "text": "我的",
  54. "iconPath": "/static/img/my.png",
  55. "selectedIconPath": "/static/img/my-fill.png"
  56. }
  57. ]
  58. }
  59. }