app.json 1022 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/my/my",
  5. "pages/search/search",
  6. "pages/setMeal/setMeal",
  7. "pages/set/set",
  8. "pages/common/common",
  9. "pages/addOrEdit/addOrEdit",
  10. "pages/orderManage/orderManage",
  11. "pages/detail/detail"
  12. ],
  13. "subPackages": [],
  14. "window": {
  15. "navigationBarTextStyle": "black",
  16. "navigationBarTitleText": "靖安民宿",
  17. "navigationBarBackgroundColor": "#F8F8F8",
  18. "backgroundColor": "#F8F8F8"
  19. },
  20. "tabBar": {
  21. "color": "#A6A6A6",
  22. "selectedColor": "#096562",
  23. "borderStyle": "black",
  24. "backgroundColor": "#ffffff",
  25. "list": [
  26. {
  27. "pagePath": "pages/index/index",
  28. "iconPath": "static/images/index.png",
  29. "selectedIconPath": "static/images/index-active.png",
  30. "text": "首页"
  31. },
  32. {
  33. "pagePath": "pages/my/my",
  34. "iconPath": "static/images/my.png",
  35. "selectedIconPath": "static/images/my-active.png",
  36. "text": "我的"
  37. }
  38. ]
  39. },
  40. "usingComponents": {}
  41. }