pages.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "easycom": {
  3. // 注意一定要放在custom里,否则无效,https://ask.dcloud.net.cn/question/131175
  4. "custom": {
  5. "^u--(.*)": "uview-plus/components/u-$1/u-$1.vue",
  6. "^up-(.*)": "uview-plus/components/u-$1/u-$1.vue",
  7. "^u-([^-].*)": "uview-plus/components/u-$1/u-$1.vue"
  8. }
  9. },
  10. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  11. {
  12. "path": "pages/login/index",
  13. "style": {
  14. "navigationBarTitleText": "",
  15. "enablePullDownRefresh": false,
  16. "navigationBarBackgroundColor": "#108cff",
  17. "navigationStyle": "custom"
  18. }
  19. },
  20. {
  21. "path": "pages/privacy/index",
  22. "style": {
  23. "navigationBarTitleText": "隐私政策",
  24. "enablePullDownRefresh": false,
  25. "navigationStyle": "custom"
  26. }
  27. },
  28. {
  29. "path": "pages/repair/index",
  30. "style": {
  31. "navigationBarTitleText": "",
  32. "enablePullDownRefresh": false,
  33. "navigationStyle": "custom"
  34. }
  35. },
  36. {
  37. "path": "pages/repair/components/apply/index",
  38. "style": {
  39. "navigationBarTitleText": "手表维保"
  40. }
  41. },
  42. {
  43. "path": "pages/repair/components/progress/index",
  44. "style": {
  45. "navigationBarTitleText": "进度查询"
  46. }
  47. },
  48. {
  49. "path": "pages/repair/components/price/index",
  50. "style": {
  51. "navigationBarTitleText": "维修报价"
  52. }
  53. },
  54. {
  55. "path": "pages/repair/components/orderDetail/index",
  56. "style": {
  57. "navigationBarTitleText": "订单详情"
  58. }
  59. },
  60. {
  61. "path": "pages/repair/components/orderList/index",
  62. "style": {
  63. "navigationBarTitleText": "订单列表"
  64. }
  65. }
  66. ],
  67. "globalStyle": {
  68. "navigationBarTextStyle": "black",
  69. "navigationBarTitleText": "uni-app",
  70. "navigationBarBackgroundColor": "#F8F8F8",
  71. "backgroundColor": "#F8F8F8"
  72. },
  73. "tabBar": {
  74. "color": "#666666",
  75. "selectedColor": "#108CFF",
  76. "backgroundColor": "#ffffff",
  77. "iconWidth": "28px",
  78. "height": "70px",
  79. "fontSize": "12px",
  80. "list": [
  81. {
  82. "text": "手表服务",
  83. "pagePath": "pages/repair/index",
  84. "iconPath": "static/tabs/watch.png",
  85. "selectedIconPath": "static/tabs/watch-active.png",
  86. "visible": true
  87. }
  88. ]
  89. }
  90. }