pages.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "pages": [
  3. // pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. {
  5. "path": "pages/down",
  6. "style": {
  7. "navigationBarTitleText": "下载",
  8. "navigationStyle": "custom"
  9. }
  10. },
  11. {
  12. "path": "pages/payCentre",
  13. "style": {
  14. "navigationBarTitleText": "支付中",
  15. "navigationStyle": "custom"
  16. }
  17. },
  18. {
  19. "path": "pages/paySuccess",
  20. "style": {
  21. "navigationBarTitleText": "支付成功",
  22. "navigationStyle": "custom"
  23. }
  24. },
  25. // {
  26. // "path": "pages/index",
  27. // "style": {
  28. // "navigationBarTitleText": "松河生活商城",
  29. // "navigationStyle": "custom"
  30. // }
  31. // },
  32. // {
  33. // "path": "pages/register",
  34. // "style": {
  35. // "navigationBarTitleText": "注册",
  36. // "navigationStyle": "custom"
  37. // }
  38. // },
  39. {
  40. "path": "pages/agreement",
  41. "style": {
  42. "navigationBarTitleText": "协议",
  43. "navigationStyle": "custom"
  44. }
  45. },
  46. {
  47. "path": "pages/serviceOrPrivacy",
  48. "style": {
  49. "navigationBarTitleText": "服务协议",
  50. "navigationStyle": "custom"
  51. }
  52. },
  53. {
  54. "path": "pages/phone",
  55. "style": {
  56. "navigationBarTitleText": "咨询电话",
  57. "navigationStyle": "custom"
  58. }
  59. }
  60. // {
  61. // "path":"pages/login",
  62. // "style":{
  63. // "navigationBarTitleText":"授权"//支付宝登录
  64. // }
  65. // }
  66. ],
  67. "globalStyle": {
  68. "pageOrientation": "portrait",
  69. "navigationBarTextStyle": "black",
  70. "navigationBarBackgroundColor": "#fff",
  71. "backgroundColor": "#F8F8F8",
  72. "backgroundColorTop": "#F4F5F6",
  73. "backgroundColorBottom": "#F4F5F6",
  74. // "navigationStyle": "custom",
  75. "app-plus": {
  76. "titleView": true,
  77. "optimization": {
  78. "subPackages": true
  79. },
  80. "runmode": "liberate" // 开启分包优化后,必须配置资源释放模式
  81. }
  82. }
  83. }