app.json 942 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "pages": [
  3. "pages/index/hotel",
  4. "pages/index/index",
  5. "pages/index/cart",
  6. "pages/index/shop",
  7. "pages/index/commemt",
  8. "pages/myone/oneIndex",
  9. "pages/taBar/index",
  10. "pages/myCenter/index"
  11. ],
  12. "subPackages": [],
  13. "window": {
  14. "navigationBarTextStyle": "black",
  15. "navigationBarTitleText": "uni-app",
  16. "navigationBarBackgroundColor": "#F8F8F8",
  17. "backgroundColor": "#F8F8F8"
  18. },
  19. "tabBar": {
  20. "color": "#C0C4CC",
  21. "list": [
  22. {
  23. "pagePath": "pages/index/index",
  24. "text": "首页"
  25. },
  26. {
  27. "pagePath": "pages/myone/oneIndex",
  28. "text": "发现"
  29. },
  30. {
  31. "pagePath": "pages/taBar/index",
  32. "text": "订单"
  33. },
  34. {
  35. "pagePath": "pages/myCenter/index",
  36. "text": "我的"
  37. }
  38. ]
  39. },
  40. "permission": {
  41. "scope.userLocation": {
  42. "desc": "演示定位能力"
  43. }
  44. },
  45. "usingComponents": {}
  46. }