pages.json 2.5 KB

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