pages.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. // "condition": { //模式配置,仅开发期间生效
  3. // "current": 0, //当前激活的模式(list 的索引项)
  4. // "list": [{
  5. // "name": "test", //模式名称
  6. // "path": "pages/componentsB/dropdown/dropdown", //启动页面,必选
  7. // "query": "" //启动参数,在页面的onLoad函数里面得到
  8. // }]
  9. // },
  10. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  11. {
  12. "path": "pages/index/index",
  13. "style": {
  14. "navigationBarTitleText": "",
  15. "enablePullDownRefresh": false,
  16. "navigationStyle":"custom"
  17. }
  18. }
  19. ,{
  20. "path" : "pages/goods-details/goods-details",
  21. "style" :
  22. {
  23. "navigationBarTitleText": "",
  24. "enablePullDownRefresh": false
  25. }
  26. }
  27. ,{
  28. "path" : "pages/program/program",
  29. "style" :
  30. {
  31. "navigationBarTitleText": "",
  32. "enablePullDownRefresh": false
  33. }
  34. }
  35. ,{
  36. "path" : "pages/more/more",
  37. "style" :
  38. {
  39. "navigationBarTitleText": "",
  40. "enablePullDownRefresh": false
  41. }
  42. }
  43. ],
  44. "globalStyle": {
  45. "navigationBarTextStyle": "black",
  46. "navigationBarTitleText": "荟享家大屏",
  47. "navigationBarBackgroundColor": "#FFFFFF",
  48. "backgroundColor": "#FFFFFF",
  49. "titleNView":false
  50. }
  51. // "tabBar": {
  52. // "color": "#7A7E83",
  53. // "selectedColor": "#3cc51f",
  54. // "borderStyle": "black",
  55. // "backgroundColor": "#ffffff",
  56. // "list": []
  57. // }
  58. }