pages.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/login/login",
  8. "style": {
  9. "navigationBarTitleText": "",
  10. "navigationStyle": "custom"
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationBarTitleText": "我的",
  17. "navigationBarBackgroundColor":"#FFFFFF",
  18. "enablePullDownRefresh": true
  19. }
  20. }, {
  21. "path": "pages/response/index",
  22. "style": {
  23. "navigationBarTitleText": "应答中心",
  24. "navigationBarBackgroundColor":"#f7f7f7"
  25. }
  26. },
  27. {
  28. "path": "pages/response/details",
  29. "style": {
  30. "navigationBarTitleText": "应答中心详情",
  31. "navigationBarBackgroundColor":"#f7f7f7"
  32. }
  33. }, {
  34. "path": "pages/my/index",
  35. "style": {
  36. "navigationBarTitleText": "",
  37. "navigationStyle": "custom"
  38. }
  39. }, {
  40. "path": "pages/supervise/index",
  41. "style": {
  42. "navigationBarTitleText": "",
  43. "navigationBarBackgroundColor":"#FFFFFF"
  44. }
  45. }
  46. ],
  47. "globalStyle": {
  48. "navigationBarTextStyle": "black",
  49. "navigationBarTitleText": "",
  50. "navigationBarBackgroundColor": "#fff",
  51. "backgroundColor": "#fff"
  52. },
  53. "tabBar": {
  54. "color": "#cdcdcd",
  55. "selectedColor": "#56C979",
  56. "borderStyle": "white",
  57. "list": [{
  58. "pagePath": "pages/index/index",
  59. "iconPath": "static/image/indeximg/renwuon.png",
  60. "selectedIconPath": "static/image/indeximg/renwu.png",
  61. "text": "任务"
  62. },
  63. {
  64. "pagePath": "pages/response/index",
  65. "iconPath": "static/image/indeximg/huidaon.png",
  66. "selectedIconPath": "static/image/indeximg/huida.png",
  67. "text": "应答"
  68. },
  69. {
  70. "pagePath": "pages/supervise/index",
  71. "iconPath": "static/image/indeximg/yingjianon.png",
  72. "selectedIconPath": "static/image/indeximg/yingjian.png",
  73. "text": "监督"
  74. },
  75. {
  76. "pagePath": "pages/my/index",
  77. "iconPath": "static/image/indeximg/meon.png",
  78. "selectedIconPath": "static/image/indeximg/me.png",
  79. "text": "我的"
  80. }
  81. ]
  82. }
  83. }