app.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/product/index",
  5. "pages/product/detail",
  6. "pages/news/index",
  7. "pages/users/login/index",
  8. "pages/users/register/index"
  9. ],
  10. "subPackages": [],
  11. "window": {
  12. "navigationBarTextStyle": "black",
  13. "navigationBarTitleText": "巴巴礼品",
  14. "navigationBarBackgroundColor": "#fff",
  15. "backgroundColor": "#F8F8F8",
  16. "titleNView": false
  17. },
  18. "tabBar": {
  19. "color": "#282828",
  20. "selectedColor": "#ff5c00",
  21. "borderStyle": "black",
  22. "backgroundColor": "#ffffff",
  23. "list": [
  24. {
  25. "pagePath": "pages/index/index",
  26. "iconPath": "static/images/1-001.png",
  27. "selectedIconPath": "static/images/1-002.png",
  28. "text": "首页"
  29. },
  30. {
  31. "pagePath": "pages/product/index",
  32. "iconPath": "static/images/2-001.png",
  33. "selectedIconPath": "static/images/2-002.png",
  34. "text": "商品"
  35. },
  36. {
  37. "pagePath": "pages/my/index",
  38. "iconPath": "static/images/3-001.png",
  39. "selectedIconPath": "static/images/3-002.png",
  40. "text": "订单"
  41. },
  42. {
  43. "pagePath": "pages/my/index",
  44. "iconPath": "static/images/4-001.png",
  45. "selectedIconPath": "static/images/4-002.png",
  46. "text": "我的"
  47. }
  48. ]
  49. },
  50. "permission": {
  51. "scope.userLocation": {
  52. "desc": "你的位置信息将用于和门店的距离长度"
  53. }
  54. },
  55. "usingComponents": {}
  56. }