app.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. ],
  16. "window":{
  17. "navigationBarBackgroundColor": "#fff",
  18. "navigationBarTextStyle": "black",
  19. "navigationBarTitleText": "首页",
  20. "backgroundColor": "#fff",
  21. "backgroundTextStyle": "light"
  22. },
  23. "tabBar": {
  24. "color": "#444",
  25. "selectedColor": "#1296db",
  26. "backgroundColor": "#ffffff",
  27. "list": [{
  28. "pagePath": "pages/index/index",
  29. "text": "首页",
  30. "iconPath": "images/icons/index.png",
  31. "selectedIconPath": "images/icons/index-active.png"
  32. },
  33. {
  34. "pagePath": "pages/personorder/personorder",
  35. "text": "订单",
  36. "iconPath": "images/icons/order.png",
  37. "selectedIconPath": "images/icons/order-active.png"
  38. },
  39. {
  40. "pagePath": "pages/person/person",
  41. "text": "我的",
  42. "iconPath": "images/icons/person.png",
  43. "selectedIconPath": "images/icons/person-active.png"
  44. }]
  45. },
  46. "style": "v2",
  47. "sitemapLocation": "sitemap.json",
  48. "permission": {
  49. "scope.userLocation": {
  50. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  51. }
  52. }
  53. }