app.json 973 B

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