pages.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/distinguish/index",
  5. "style": {
  6. "navigationBarTitleText": "",
  7. "enablePullDownRefresh":true,
  8. "navigationStyle":"custom"
  9. }
  10. },{
  11. "path": "pages/login/login-account",
  12. "style": {
  13. "navigationBarTitleText": "",
  14. "navigationStyle":"custom"
  15. }
  16. },{
  17. "path": "pages/tabBar/user/mine",
  18. "style": {
  19. "navigationBarTitleText": "店铺",
  20. "navigationStyle":"custom"
  21. }
  22. },{
  23. "path": "pages/tabBar/order/index",
  24. "style": {
  25. "navigationBarTitleText": "订单",
  26. "enablePullDownRefresh" : true,
  27. "navigationStyle":"custom"
  28. }
  29. },{
  30. "path": "pages/tabBar/product/index",
  31. "style": {
  32. "navigationBarTitleText": "",
  33. "enablePullDownRefresh":true,
  34. "navigationStyle":"custom"
  35. }
  36. }
  37. ],
  38. "subPackages": [],
  39. "tabBar": {
  40. "height":"80",
  41. "color": "#C6C6C6",
  42. "selectedColor": "#4688fa",
  43. "borderStyle": "black",
  44. "backgroundColor": "#ffffff",
  45. "list": [{
  46. "pagePath": "pages/tabBar/order/index",
  47. "iconPath": "static/icon-order@2x.png",
  48. "selectedIconPath": "static/icon-order-active@2x.png",
  49. "text": "订单"
  50. },{
  51. "pagePath": "pages/tabBar/product/index",
  52. "iconPath": "static/icon-product@2x.png",
  53. "selectedIconPath": "static/icon-product-active@2x.png",
  54. "text": "商品"
  55. },{
  56. "pagePath": "pages/tabBar/user/mine",
  57. "iconPath": "static/icon-shop@2x.png",
  58. "selectedIconPath": "static/icon-shop-active@2x.png",
  59. "text": "店铺"
  60. }
  61. ]
  62. },
  63. "easycom": {
  64. "autoscan": true,
  65. "custom": {
  66. "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
  67. }
  68. },
  69. "globalStyle": {
  70. "navigationBarTextStyle": "black",
  71. "navigationBarTitleText": "采美CRM系统",
  72. "navigationBarBackgroundColor": "#FFFFFF",
  73. "backgroundColor": "#FFFFFF"
  74. },
  75. "condition" : { //模式配置,仅开发期间生效
  76. "current": 0, //当前激活的模式(list 的索引项)
  77. "list": [
  78. {
  79. "name": "", //模式名称
  80. "path": "", //启动页面,必选
  81. "query": "" //启动参数,在页面的onLoad函数里面得到
  82. }
  83. ]
  84. }
  85. }