app.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/login",
  5. "pages/otherNumlogin",
  6. "pages/travel",
  7. "pages/customerService",
  8. "pages/userCenter"
  9. ],
  10. "subPackages": [
  11. {
  12. "root": "pages/userCenter",
  13. "pages": [
  14. "aboutus",
  15. "invoice",
  16. "Policy",
  17. "Terms",
  18. "userEdit"
  19. ]
  20. },
  21. {
  22. "root": "pages/peopleList",
  23. "pages": [
  24. "peopleList",
  25. "addPeople"
  26. ]
  27. },
  28. {
  29. "root": "pages/travel",
  30. "pages": [
  31. "poster",
  32. "travelDetails",
  33. "travelPeople",
  34. "submitOrder",
  35. "contract"
  36. ]
  37. },
  38. {
  39. "root": "pages/order",
  40. "pages": [
  41. "order",
  42. "guide",
  43. "orderDetails",
  44. "orderAfterSale",
  45. "applyAfterSale"
  46. ]
  47. },
  48. {
  49. "root": "pages/invoice",
  50. "pages": [
  51. "invoiceList",
  52. "invoiceAdmin",
  53. "invoiceHistory",
  54. "invoiceEndit",
  55. "applyInvoice"
  56. ]
  57. }
  58. ],
  59. "window": {
  60. "navigationBarTextStyle": "black",
  61. "navigationBarBackgroundColor": "#FFFFFF",
  62. "backgroundColor": "#FFFFFF"
  63. },
  64. "tabBar": {
  65. "color": "#C1C1C1",
  66. "selectedColor": "#1E9F6A",
  67. "backgroundColor": "#FFF",
  68. "borderStyle": "black",
  69. "list": [
  70. {
  71. "pagePath": "pages/index/index",
  72. "text": "首页",
  73. "iconPath": "static/tabbaricon/首页.png",
  74. "selectedIconPath": "static/tabbaricon/首页selected@2x.png"
  75. },
  76. {
  77. "pagePath": "pages/travel",
  78. "text": "旅行",
  79. "iconPath": "static/tabbaricon/森林康养.png",
  80. "selectedIconPath": "static/tabbaricon/森林康养@2x.png"
  81. },
  82. {
  83. "pagePath": "pages/userCenter",
  84. "text": "我的",
  85. "iconPath": "static/tabbaricon/我的@2x.png",
  86. "selectedIconPath": "static/tabbaricon/我的.png"
  87. }
  88. ]
  89. },
  90. "permission": {
  91. "scope.userLocation": {
  92. "desc": "获取您的位置信息"
  93. }
  94. },
  95. "usingComponents": {},
  96. "sitemapLocation": "sitemap.json"
  97. }