pages.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "^wd-(.*)": "wot-design-uni/components/wd-$1/wd-$1.vue"
  6. }
  7. },
  8. "pages": [
  9. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  10. {
  11. "path": "pages/index/index",
  12. "style": {
  13. // "navigationBarTitleText": "首页",
  14. "navigationStyle": "custom"
  15. }
  16. },
  17. {
  18. "path": "pages/my/index",
  19. "style": {
  20. "navigationStyle": "custom"
  21. }
  22. }
  23. ],
  24. "subPackages": [
  25. {
  26. "root": "pagesOne",
  27. "pages": [
  28. {
  29. "path": "winner/index",
  30. "style": {
  31. // "navigationBarTitleText": "首页",
  32. "navigationStyle": "custom"
  33. }
  34. },
  35. {
  36. "path": "winner/uploadImage",
  37. "style": {
  38. "navigationBarTitleText": "批量上传照片"
  39. }
  40. },
  41. {
  42. "path": "record/winnerList",
  43. "style": {
  44. "navigationBarTitleText": "奖励记录"
  45. }
  46. }
  47. ]
  48. }
  49. ],
  50. "globalStyle": {
  51. "navigationBarTextStyle": "black",
  52. "navigationBarTitleText": "uni-app",
  53. "navigationBarBackgroundColor": "#F8F8F8",
  54. "backgroundColor": "#F8F8F8"
  55. },
  56. "tabBar": {
  57. "color": "#A5AEC1",
  58. "selectedColor": "#1D212A",
  59. "backgroundColor": "#fff",
  60. "borderStyle": "white",
  61. "list": [
  62. {
  63. "text": "首页",
  64. "pagePath": "pages/index/index",
  65. "iconPath": "static/images/home_default.png",
  66. "selectedIconPath": "static/images/home_selected.png"
  67. },
  68. {
  69. "text": "我的",
  70. "pagePath": "pages/my/index",
  71. "iconPath": "static/images/user_default.png",
  72. "selectedIconPath": "static/images/user_selected.png"
  73. }
  74. ]
  75. }
  76. }