app.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/my/index"
  5. ],
  6. "subPackages": [
  7. {
  8. "root": "shop",
  9. "pages": [
  10. "shopDetail/shopDetail"
  11. ]
  12. },
  13. {
  14. "root": "my",
  15. "pages": [
  16. "coupon/index",
  17. "edit/edit",
  18. "edit/editName"
  19. ]
  20. },
  21. {
  22. "root": "combo",
  23. "pages": [
  24. "combo/combo"
  25. ]
  26. },
  27. {
  28. "root": "login",
  29. "pages": [
  30. "login/login",
  31. "login/otherLogin",
  32. "login/veriFace"
  33. ]
  34. }
  35. ],
  36. "window": {
  37. "navigationBarTextStyle": "black",
  38. "navigationBarTitleText": "uni-app",
  39. "navigationBarBackgroundColor": "#fff",
  40. "backgroundColor": "#F8F8F8"
  41. },
  42. "tabBar": {
  43. "color": "#000",
  44. "selectedColor": "#ED201D",
  45. "backgroundColor": "#fff",
  46. "list": [
  47. {
  48. "iconPath": "static/home_off.png",
  49. "selectedIconPath": "static/home_on.png",
  50. "text": "首页",
  51. "pagePath": "pages/index/index"
  52. },
  53. {
  54. "iconPath": "static/my_off.png",
  55. "selectedIconPath": "static/my_on.png",
  56. "text": "我的",
  57. "pagePath": "pages/my/index"
  58. }
  59. ]
  60. },
  61. "component2": true,
  62. "usingComponents": {}
  63. }