app.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/orders/orders",
  5. "pages/me/me",
  6. "pages/login/login",
  7. "pages/register/register",
  8. "pages/preOrder/preOrder",
  9. "pages/address/address",
  10. "pages/detail/detail",
  11. "pages/introduce/introduce",
  12. "pages/agreement/agreement",
  13. "pages/person/person",
  14. "pages/certification/certification",
  15. "pages/acceptOrders/acceptOrders",
  16. "pages/records/records",
  17. "pages/wallet/wallet",
  18. "pages/charge/charge",
  19. "pages/comment/comment",
  20. "pages/myComment/myComment"
  21. ],
  22. "subPackages": [],
  23. "window": {
  24. "navigationBarTextStyle": "white",
  25. "navigationBarTitleText": "校园综合服务平台",
  26. "navigationBarBackgroundColor": "#006eff",
  27. "backgroundColor": "#F8F8F8"
  28. },
  29. "tabBar": {
  30. "backgroundColor": "#fff",
  31. "selectedColor": "#006eff",
  32. "color": "#666",
  33. "list": [
  34. {
  35. "iconPath": "/static/icons/home.png",
  36. "selectedIconPath": "static/icons/home-active.png",
  37. "text": "首页",
  38. "pagePath": "pages/index/index"
  39. },
  40. {
  41. "iconPath": "/static/icons/orders.png",
  42. "selectedIconPath": "static/icons/orders-active.png",
  43. "text": "订单",
  44. "pagePath": "pages/orders/orders"
  45. },
  46. {
  47. "iconPath": "/static/icons/me.png",
  48. "selectedIconPath": "static/icons/me-active.png",
  49. "text": "我的",
  50. "pagePath": "pages/me/me"
  51. }
  52. ]
  53. },
  54. "permission": {
  55. "scope.userLocation": {
  56. "desc": "需要获取您的位置信息以选择地址"
  57. }
  58. },
  59. "requiredPrivateInfos": [
  60. "chooseLocation"
  61. ],
  62. "usingComponents": {}
  63. }