pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. "navigationBarTitleText": "销售记录"
  42. }
  43. },
  44. {
  45. "path": "pages/workOrder/sellOrder/customBundleDetail", // 销售详情
  46. "style": {
  47. "navigationBarTitleText": "销售详情"
  48. }
  49. },
  50. {
  51. "path": "pages/userCenter/index",
  52. "style": {
  53. "navigationBarTitleText": "个人中心",
  54. "navigationBarBackgroundColor": "#2ab4e5",
  55. "navigationBarTextStyle": "white"
  56. }
  57. },
  58. {
  59. "path": "pages/userCenter/aboutUs",
  60. "style": {
  61. "navigationBarTitleText": "关于我们"
  62. }
  63. },
  64. {
  65. "path": "pages/agreement/agreement",
  66. "style": {
  67. "navigationBarTitleText": "注意事项及服务协议"
  68. }
  69. },
  70. {
  71. "path": "pages/userCenter/changePwd", // 我的>修改密码
  72. "style": {
  73. "navigationBarTitleText": "修改密码"
  74. }
  75. }
  76. ],
  77. "globalStyle": {
  78. "navigationBarTextStyle": "black",
  79. "navigationBarTitleText": "uni-app",
  80. "navigationBarBackgroundColor": "#FFFFFF",
  81. "backgroundColor": "#f2f2f2",
  82. "app-plus": {
  83. // 将回弹属性关掉
  84. "bounce": "none",
  85. "scrollIndicator": "none"
  86. }
  87. },
  88. "tabBar": {
  89. "color": "#7A7E83",
  90. "selectedColor": "#2ab4e5",
  91. "backgroundColor": "#ffffff",
  92. "fontSize": "14px",
  93. "list": [
  94. {
  95. "pagePath": "pages/workOrder/sellOrder/chooseBundle",
  96. "iconPath": "static/tabbar/record.png",
  97. "selectedIconPath": "static/tabbar/record-active.png",
  98. "text": "套餐销售"
  99. },
  100. {
  101. "pagePath": "pages/workOrder/sellOrder/bundleList",
  102. "iconPath": "static/tabbar/record.png",
  103. "selectedIconPath": "static/tabbar/record-active.png",
  104. "text": "销售记录"
  105. },
  106. {
  107. "pagePath": "pages/userCenter/index",
  108. "iconPath": "static/tabbar/user.png",
  109. "selectedIconPath": "static/tabbar/user-active.png",
  110. "text": "我的"
  111. }]
  112. }
  113. }