pages.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. // {
  4. // "path": "pages/home/home",
  5. // "style": {
  6. // "navigationBarTitleText": "卡密验证"
  7. // }
  8. // },
  9. {
  10. "path": "pages/index/index",
  11. "style": {
  12. "navigationBarTitleText": "卡密验证"
  13. }
  14. },
  15. {
  16. "path": "pages/gift/gift",
  17. "style": {
  18. "navigationBarTitleText": "选择礼包"
  19. }
  20. },
  21. {
  22. "path": "pages/receive/receive",
  23. "style": {
  24. "navigationBarTitleText": "领取礼包"
  25. }
  26. },
  27. {
  28. "path": "pages/logistics/logistics",
  29. "style": {
  30. "navigationBarTitleText": "兑换信息"
  31. }
  32. }
  33. ,{
  34. "path" : "pages/success/success",
  35. "style" : {
  36. "navigationBarTitleText": "兑换成功"
  37. }
  38. }
  39. // ,{
  40. // "path" : "pages/home/home",
  41. // "style" : {}
  42. // }
  43. ],
  44. "globalStyle": {
  45. "navigationBarTextStyle": "black",
  46. "navigationBarTitleText": "uni-app",
  47. "navigationBarBackgroundColor": "#EBEBEB",
  48. "backgroundColor": "#EBEBEB"
  49. }
  50. }