pages.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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/index/index",
  8. "style": {
  9. "navigationBarTitleText": "智慧停车运营数据系统",
  10. "navigationStyle": "custom"
  11. }
  12. }, {
  13. "path": "pages/login/login",
  14. "style": {
  15. "navigationBarTitleText": "登录",
  16. "enablePullDownRefresh": false
  17. }
  18. }, {
  19. "path": "pages/orderRecords/orderRecords",
  20. "style": {
  21. "navigationBarTitleText": "订单记录",
  22. "enablePullDownRefresh": false
  23. }
  24. }, {
  25. "path": "pages/operationOverview/operationOverview",
  26. "style": {
  27. "navigationBarTitleText": "运营概况",
  28. "enablePullDownRefresh": false
  29. }
  30. }, {
  31. "path": "pages/patrolManagement/patrolManagement",
  32. "style": {
  33. "navigationBarTitleText": "巡检管理",
  34. "enablePullDownRefresh": false
  35. }
  36. }, {
  37. "path": "pages/operationOverview/operationOverviewModel/operationOverviewModel",
  38. "style": {
  39. "navigationBarTitleText": "运营概况",
  40. "enablePullDownRefresh": false
  41. }
  42. }, {
  43. "path": "pages/operationOverview/statisticalReport/statisticalReport",
  44. "style": {
  45. "navigationBarTitleText": "统计报表",
  46. "enablePullDownRefresh": false
  47. }
  48. }, {
  49. "path": "pages/operationOverview/operationalAnalysis/operationalAnalysis",
  50. "style": {
  51. "navigationBarTitleText": "运营分析",
  52. "enablePullDownRefresh": false
  53. }
  54. }
  55. ],
  56. "globalStyle": {
  57. "navigationBarTextStyle": "black",
  58. "navigationBarTitleText": "uni-app",
  59. "navigationBarBackgroundColor": "#F8F8F8",
  60. "backgroundColor": "#F8F8F8"
  61. }
  62. }