pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. }
  11. },
  12. {
  13. "path": "pages/workOrder/sellOrder/chooseBundle",
  14. "style": {
  15. "navigationBarTitleText": "购买套餐",
  16. "enablePullDownRefresh": false
  17. }
  18. },
  19. {
  20. "path": "pages/workOrder/sellOrder/buyBundle",
  21. "style": {
  22. "navigationBarTitleText": "套餐收款"
  23. }
  24. },
  25. // {
  26. // "path": "pages/index/index", // 首页
  27. // "style": {
  28. // "navigationBarTitleText": "乐色助手",
  29. // "enablePullDownRefresh": false
  30. // }
  31. // },
  32. {
  33. "path": "pages/workOrder/sellOrder/bundleDetail",
  34. "style": {
  35. "navigationBarTitleText": "套餐详情"
  36. }
  37. },
  38. {
  39. "path": "pages/workOrder/sellOrder/bundleList",
  40. "style": {
  41. "navigationStyle": "custom", // 是否显示导航栏 default显示,custom不显示
  42. "navigationBarTitleText": "已购套餐",
  43. "app-plus":{
  44. "titleView":false
  45. }
  46. }
  47. },
  48. {
  49. "path": "pages/workOrder/sellOrder/customBundleDetail", // 客户已购套餐详细
  50. "style": {
  51. "navigationBarTitleText": "客户已购套餐详细"
  52. }
  53. },
  54. {
  55. "path": "pages/userCenter/index",
  56. "style": {
  57. "navigationBarTitleText": "个人中心",
  58. "navigationBarBackgroundColor": "#2ab4e5",
  59. "navigationBarTextStyle": "white"
  60. }
  61. },
  62. {
  63. "path": "pages/userCenter/aboutUs",
  64. "style": {
  65. "navigationBarTitleText": "关于我们"
  66. }
  67. },
  68. {
  69. "path": "pages/agreement/agreement",
  70. "style": {
  71. "navigationBarTitleText": "注意事项及服务协议"
  72. }
  73. },
  74. {
  75. "path": "pages/userCenter/changePwd", // 我的>修改密码
  76. "style": {
  77. "navigationBarTitleText": "修改密码"
  78. }
  79. }
  80. ],
  81. "globalStyle": {
  82. "navigationBarTextStyle": "black",
  83. "navigationBarTitleText": "uni-app",
  84. "navigationBarBackgroundColor": "#FFFFFF",
  85. "backgroundColor": "#f2f2f2",
  86. "app-plus": {
  87. // 将回弹属性关掉
  88. "bounce": "none",
  89. "scrollIndicator": "none"
  90. }
  91. },
  92. "tabBar": {
  93. "color": "#7A7E83",
  94. "selectedColor": "#2ab4e5",
  95. "backgroundColor": "#ffffff",
  96. "fontSize": "14px",
  97. "list": [
  98. {
  99. "pagePath": "pages/workOrder/sellOrder/chooseBundle",
  100. "iconPath": "static/tabbar/record.png",
  101. "selectedIconPath": "static/tabbar/record-active.png",
  102. "text": "购买套餐"
  103. },
  104. {
  105. "pagePath": "pages/userCenter/index",
  106. "iconPath": "static/tabbar/user.png",
  107. "selectedIconPath": "static/tabbar/user-active.png",
  108. "text": "我的"
  109. }]
  110. }
  111. }