pages.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "pages": [
  3. // 系统没有开放前,作为第一个页面,开发后作为最后一个页面
  4. {
  5. "path": "pages/index/index",
  6. "style": {
  7. "navigationBarTitleText": "智慧校园公寓"
  8. }
  9. },
  10. {
  11. "path": "pages/myself/myself",
  12. "style": {
  13. "navigationBarTitleText": "我的"
  14. }
  15. },
  16. {
  17. "path": "pages/order_room/order_room",
  18. "style": {
  19. "navigationBarTitleText": "填写订单"
  20. }
  21. },
  22. {
  23. "path": "pages/my_orderlist/my_orderlist",
  24. "style": {
  25. "navigationBarTitleText": "我的订单"
  26. }
  27. },
  28. {
  29. "path": "pages/order_mark/order_mark",
  30. "style": {
  31. "navigationBarTitleText": "订单详情"
  32. }
  33. },
  34. {
  35. "path": "pages/ruzhuxuzhi/ruzhuxuzhi",
  36. "style": {
  37. "navigationBarTitleText": "入住须知"
  38. }
  39. },
  40. {
  41. "path": "pages/zhifuchenggong/zhifuchenggong",
  42. "style": {
  43. "navigationBarTitleText": "支付成功"
  44. }
  45. },
  46. {
  47. "path": "pages/p404/p404",
  48. "style": {
  49. "navigationBarTitleText": "获权失败"
  50. }
  51. },
  52. {
  53. "path": "pages/gongyujieshao/gongyujieshao",
  54. "style": {
  55. "navigationBarTitleText": "公寓介绍"
  56. }
  57. },
  58. {
  59. "path": "pages/default/default",
  60. "style": {
  61. "navigationBarTitleText": "公告",
  62. "enablePullDownRefresh": false,
  63. "transparentTitle": "always",
  64. "disableScroll": true
  65. }
  66. }
  67. ],
  68. "globalStyle": {
  69. "navigationBarTextStyle": "black",
  70. "navigationBarTitleText": "uni-app",
  71. "transparentTitle": "always",
  72. "navigationBarBackgroundColor": "#FFFFFF",
  73. "backgroundColor": "#FFFFFF",
  74. "app-plus": {
  75. "background": "#efeff4"
  76. }
  77. },
  78. "tabBar": { //底部导航
  79. "color": "#7A7E83",
  80. "selectedColor": "#296DE3",
  81. "borderStyle": "black",
  82. "backgroundColor": "#ffffff",
  83. "list": [{
  84. "pagePath": "pages/index/index",
  85. "iconPath": "static/tabbar/apartment.svg",
  86. "selectedIconPath": "static/tabbar/apart_dian.svg", //选中时的图片路径
  87. "text": "公寓"
  88. }, {
  89. "pagePath": "pages/myself/myself",
  90. "iconPath": "static/tabbar/myself.svg",
  91. "selectedIconPath": "static/tabbar/myself_dian.svg",
  92. "text": "我的"
  93. }]
  94. }
  95. }