app.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "pages":[
  3. "pages/index/index",
  4. "pages/comments/comments",
  5. "pages/commentinfo/commentinfo",
  6. "pages/product/product",
  7. "pages/person/person",
  8. "pages/personinfo/personinfo",
  9. "pages/order/order",
  10. "pages/appointment/appointment",
  11. "pages/personorder/personorder",
  12. "pages/shopinfo/shopinfo",
  13. "pages/shop/shop",
  14. "pages/prompt/prompt",
  15. "pages/food/food",
  16. "pages/foodOrder/foodOrder"
  17. ],
  18. "window":{
  19. "navigationBarBackgroundColor": "#fff",
  20. "navigationBarTextStyle": "black",
  21. "navigationBarTitleText": "首页",
  22. "backgroundColor": "#fff",
  23. "backgroundTextStyle": "light"
  24. },
  25. "tabBar": {
  26. "color": "#444",
  27. "selectedColor": "#1296db",
  28. "backgroundColor": "#ffffff",
  29. "list": [{
  30. "pagePath": "pages/index/index",
  31. "text": "首页",
  32. "iconPath": "images/icons/index.png",
  33. "selectedIconPath": "images/icons/index-active.png"
  34. },
  35. {
  36. "pagePath": "pages/personorder/personorder",
  37. "text": "订单",
  38. "iconPath": "images/icons/order.png",
  39. "selectedIconPath": "images/icons/order-active.png"
  40. },
  41. {
  42. "pagePath": "pages/person/person",
  43. "text": "我的",
  44. "iconPath": "images/icons/person.png",
  45. "selectedIconPath": "images/icons/person-active.png"
  46. }]
  47. },
  48. "style": "v2",
  49. "sitemapLocation": "sitemap.json",
  50. "permission": {
  51. "scope.userLocation": {
  52. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  53. }
  54. }
  55. }