pages.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "uni-app"
  7. }
  8. },
  9. {
  10. "path": "pages/addjk/choice",
  11. "style": {
  12. "navigationBarTitleText": "选择素材",
  13. "navigationStyle": "custom"
  14. }
  15. },
  16. {
  17. "path" : "pages/addjk/activity",
  18. "style" :
  19. {
  20. "navigationStyle": "custom",
  21. "enablePullDownRefresh": true
  22. }
  23. },
  24. {
  25. "path": "pages/addjk/addActivity",
  26. "style": {
  27. "navigationBarTitleText": "新建活动"
  28. }
  29. },
  30. {
  31. "path": "pages/addjk/eadit",
  32. "style": {
  33. "navigationBarTitleText": "编辑内容"
  34. }
  35. },
  36. {
  37. "path": "pages/addjk/ckshop",
  38. "style": {
  39. "navigationBarTitleText": "选择门店"
  40. }
  41. },
  42. {
  43. "path": "pages/addjk/ckmusic",
  44. "style": {
  45. "navigationBarTitleText": "选择音乐"
  46. }
  47. },
  48. {
  49. "path": "pages/addjk/jkDetail",
  50. "style": {
  51. "navigationBarTitleText": "活动详情"
  52. }
  53. },
  54. {
  55. "path": "pages/addjk/signJkDetail",
  56. "style": {
  57. "navigationBarTitleText": "报名详情",
  58. "enablePullDownRefresh": true
  59. }
  60. },
  61. {
  62. "path": "pages/addjk/statistics",
  63. "style": {
  64. "navigationBarTitleText": "数据统计",
  65. "enablePullDownRefresh": true
  66. }
  67. },
  68. {
  69. "path": "pages/addjk/activityDetail",
  70. "style": {
  71. "navigationBarTitleText": "活动详情"
  72. }
  73. }
  74. ],
  75. "globalStyle": {
  76. "navigationBarTextStyle": "black",
  77. "navigationBarTitleText": "uni-app",
  78. "navigationBarBackgroundColor": "#ffffff",
  79. "backgroundColor": "#F8F8F8"
  80. },
  81. "uniIdRouter": {}
  82. }