pages.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/index",
  8. "style": {
  9. "navigationBarTitleText": "承揽时代"
  10. }
  11. },
  12. {
  13. "path": "pages/packages/index",
  14. "style": {
  15. "navigationBarTitleText": "接包",
  16. "enablePullDownRefresh": true
  17. }
  18. },
  19. {
  20. "path": "pages/user/index",
  21. "style": {
  22. "navigationBarTitleText": "我的",
  23. "enablePullDownRefresh": false
  24. }
  25. },
  26. {
  27. "path": "pages/user/login",
  28. "style": {
  29. "navigationBarTitleText": "用户登录",
  30. "enablePullDownRefresh": false
  31. }
  32. },
  33. {
  34. "path": "pages/auth/index",
  35. "style": {
  36. "navigationBarTitleText": "实名认证",
  37. "enablePullDownRefresh": false
  38. }
  39. },
  40. {
  41. "path": "pages/company/index",
  42. "style": {
  43. "navigationBarTitleText": "关联企业",
  44. "enablePullDownRefresh": true
  45. }
  46. },
  47. {
  48. "path": "pages/company/search",
  49. "style": {
  50. "navigationBarTitleText": "手动关联",
  51. "enablePullDownRefresh": false
  52. }
  53. },
  54. {
  55. "path": "pages/user/info",
  56. "style": {
  57. "navigationBarTitleText": "关联企业",
  58. "enablePullDownRefresh": false
  59. }
  60. }
  61. ],
  62. "tabBar": {
  63. "color": "#7A7E83",
  64. "selectedColor": "#4581fb",
  65. "borderStyle": "black",
  66. "backgroundColor": "#F8F8F8",
  67. "list": [{
  68. "pagePath": "pages/index/index",
  69. "iconPath": "static/tab/sy.png",
  70. "selectedIconPath": "static/tab/sy_s.png",
  71. "text": "首页"
  72. },
  73. {
  74. "pagePath": "pages/packages/index",
  75. "iconPath": "static/tab/jb.png",
  76. "selectedIconPath": "static/tab/jb_s.png",
  77. "text": "接包"
  78. },
  79. {
  80. "pagePath": "pages/user/index",
  81. "iconPath": "static/tab/my.png",
  82. "selectedIconPath": "static/tab/my_s.png",
  83. "text": "我的"
  84. }
  85. ]
  86. },
  87. "globalStyle": {
  88. "navigationBarTextStyle": "black",
  89. "navigationBarTitleText": "承揽时代",
  90. "navigationBarBackgroundColor": "#f8f8f8"
  91. }
  92. }