app.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/my/index",
  5. "pages/genDigitalFenshen/index"
  6. ],
  7. "subPackages": [],
  8. "window": {
  9. "navigationBarTextStyle": "black",
  10. "navigationBarBackgroundColor": "#F8F8F8",
  11. "backgroundColor": "#F8F8F8"
  12. },
  13. "tabBar": {
  14. "color": "#CBC8C7",
  15. "selectedColor": "#F7790C",
  16. "borderStyle": "black",
  17. "backgroundColor": "#fff",
  18. "fontSize": "22rpx",
  19. "spacing": "5px",
  20. "height": "50px",
  21. "iconfontSrc": "static/fonts/iconfont.ttf",
  22. "list": [
  23. {
  24. "pagePath": "pages/index/index",
  25. "text": "首页",
  26. "iconPath": "static/tabbar/index.png",
  27. "selectedIconPath": "static/tabbar/index_a.png",
  28. "iconfont": {
  29. "text": "",
  30. "selectedText": "",
  31. "fontSize": "17px",
  32. "color": "#333",
  33. "selectedColor": "red"
  34. }
  35. },
  36. {
  37. "pagePath": "pages/my/index",
  38. "text": "我的",
  39. "iconPath": "static/tabbar/my.png",
  40. "selectedIconPath": "static/tabbar/my_a.png",
  41. "iconfont": {
  42. "text": "",
  43. "selectedText": "",
  44. "fontSize": "17px",
  45. "color": "#333",
  46. "selectedColor": "red"
  47. }
  48. }
  49. ]
  50. },
  51. "usingComponents": {
  52. "nav-bar": "/components/navBar/index"
  53. }
  54. }