app.json 1.2 KB

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