pages.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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/tabbar/index/index",
  8. "style": {
  9. "navigationBarTitleText": "首页",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path": "pages/tabbar/index/webview",
  15. "style": {
  16. "navigationBarTitleText": "罗山政务服务网",
  17. "enablePullDownRefresh": false,
  18. "navigationStyle": "default"
  19. }
  20. },{
  21. "path": "pages/tabbar/user/user",
  22. "style": {
  23. "navigationBarTitleText": "我的",
  24. "enablePullDownRefresh": false
  25. }
  26. }, {
  27. "path": "pages/tabbar/user/userMessage",
  28. "style": {
  29. "navigationBarTitleText": "用户信息",
  30. "enablePullDownRefresh": false
  31. }
  32. }, {
  33. "path": "pages/employed/user/newMessage",
  34. "style": {
  35. "navigationBarTitleText": "消息",
  36. "enablePullDownRefresh": true
  37. }
  38. }, {
  39. "path": "pages/employed/user/newDetails",
  40. "style": {
  41. "navigationBarTitleText": "消息详情",
  42. "enablePullDownRefresh": false
  43. }
  44. }, {
  45. "path": "pages/tabbar/user/myComplaint/myComplaint",
  46. "style": {
  47. "navigationBarTitleText": "我的投诉",
  48. "enablePullDownRefresh": true
  49. }
  50. }, {
  51. "path": "pages/tabbar/user/myComplaint/wantComplaint",
  52. "style": {
  53. "navigationBarTitleText": "我要投诉",
  54. "enablePullDownRefresh": false
  55. }
  56. }, {
  57. "path": "pages/tabbar/user/myComplaint/complaintDetails",
  58. "style": {
  59. "navigationBarTitleText": "投诉详情",
  60. "enablePullDownRefresh": false
  61. }
  62. }, {
  63. "path": "pages/tabbar/user/myComplaint/satisfaction",
  64. "style": {
  65. "navigationBarTitleText": "满意度评价",
  66. "enablePullDownRefresh": false
  67. }
  68. }, {
  69. "path": "pages/tabbar/index/announcementAll",
  70. "style": {
  71. "navigationBarTitleText": "新闻列表",
  72. "enablePullDownRefresh": true,
  73. "navigationStyle": "default"
  74. }
  75. }, {
  76. "path": "pages/info/info",
  77. "style": {
  78. "navigationBarTitleText": "",
  79. "enablePullDownRefresh": false
  80. }
  81. }, {
  82. "path": "pages/detailPage/detailPage",
  83. "style": {
  84. "navigationBarTitleText": "详情",
  85. "enablePullDownRefresh": false
  86. }
  87. }
  88. ],
  89. "globalStyle": {
  90. "navigationStyle": "custom",
  91. "navigationBarTextStyle": "black",
  92. "navigationBarTitleText": "uni-app",
  93. "navigationBarBackgroundColor": "#F8F8F8",
  94. "backgroundColor": "#F8F8F8"
  95. },
  96. "tabBar": {
  97. "color": "#D1CBCB",
  98. "selectedColor": "#DE2E27",
  99. "borderStyle": "white",
  100. "backgroundColor": "#fff",
  101. "list": [{
  102. "pagePath": "pages/tabbar/index/index",
  103. "iconPath": "static/tabbar/home.png",
  104. "selectedIconPath": "static/tabbar/home-active.png",
  105. "text": "首页"
  106. }, {
  107. "pagePath": "pages/tabbar/user/user",
  108. "iconPath": "static/tabbar/user.png",
  109. "selectedIconPath": "static/tabbar/user-active.png",
  110. "text": "我的"
  111. }]
  112. }
  113. }