pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/success",
  5. "style": {
  6. "navigationBarTitleText": "核销成功",
  7. "navigationBarTextStyle": "black",
  8. "navigationBarBackgroundColor": "#ffffff"
  9. }
  10. },
  11. {
  12. "path": "pages/index/record",
  13. "style": {
  14. "navigationBarTitleText": "核销记录",
  15. "navigationBarTextStyle": "black",
  16. "navigationBarBackgroundColor": "#ffffff"
  17. }
  18. },
  19. {
  20. "path": "pages/index/index",
  21. "style": {
  22. "navigationBarTitleText": "首页",
  23. "navigationBarTextStyle": "white",
  24. "navigationStyle":"custom"
  25. }
  26. },
  27. {
  28. "path": "pages/login/login",
  29. "style": {
  30. "navigationBarTitleText": "登录",
  31. "navigationBarTextStyle": "black",
  32. "navigationStyle":"custom"
  33. }
  34. },
  35. {
  36. "path": "pages/login/updatpaw",
  37. "style": {
  38. "navigationStyle":"custom"
  39. }
  40. },
  41. {
  42. "path": "pages/mine/mine",
  43. "style": {
  44. "navigationBarTitleText": "我的",
  45. "navigationBarTextStyle": "white",
  46. "navigationStyle":"custom"
  47. }
  48. },
  49. {
  50. "path": "pages/code/code",
  51. "style": {
  52. "navigationBarTitleText": "二维码出示",
  53. "navigationStyle":"custom"
  54. // "navigationBarBackgroundColor": "#009FE8",
  55. // "navigationBarTextStyle": "white"
  56. }
  57. }
  58. ],
  59. "tabBar":{
  60. "color": "#AAAAAA",
  61. "selectedColor": "#343434",
  62. "borderStyle": "black",
  63. "backgroundColor": "#ffffff",
  64. "list": [{
  65. "pagePath": "pages/index/index"
  66. },
  67. {
  68. "pagePath": "pages/mine/mine"
  69. }]
  70. },
  71. "globalStyle": {
  72. "navigationBarTextStyle": "black",
  73. "navigationBarTitleText": "uni-app",
  74. "navigationBarBackgroundColor": "#F8F8F8",
  75. "backgroundColor": "#F8F8F8"
  76. }
  77. }