app.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/order/order",
  5. "pages/income/income",
  6. "pages/my/my",
  7. "pages/training/training",
  8. "pages/orderDetail/orderDetail"
  9. ],
  10. "subPackages": [
  11. {
  12. "root": "service",
  13. "pages": [
  14. "login/login",
  15. "enter/enter",
  16. "serveItem/serveItem",
  17. "notice/notice",
  18. "serverTime/serverTime",
  19. "set/set",
  20. "AboutUs/AboutUs",
  21. "feedback/feedback",
  22. "merchant/merchant",
  23. "recruitDetail/recruitDetail",
  24. "earnestMoney/earnestMoney",
  25. "bill/bill",
  26. "recharge/recharge",
  27. "balance/balance",
  28. "moneyRecord/moneyRecord",
  29. "withdraw/withdraw",
  30. "bindAccount/bindAccount",
  31. "userInfo/userInfo",
  32. "realInfo/realInfo",
  33. "exercise/exercise",
  34. "info/info",
  35. "serveList/serveList",
  36. "servedetail/servedetail",
  37. "video/video",
  38. "account/account",
  39. "comments/comments"
  40. ]
  41. }
  42. ],
  43. "window": {
  44. "backgroundTextStyle": "light",
  45. "navigationBarBackgroundColor": "#fff",
  46. "navigationBarTextStyle": "black"
  47. },
  48. "tabBar": {
  49. "color": "#000",
  50. "selectedColor": "#1677FF",
  51. "list": [
  52. {
  53. "pagePath": "pages/index/index",
  54. "text": "首页",
  55. "iconPath": "static/tabbar/home.png",
  56. "selectedIconPath": "static/tabbar/home_active.png"
  57. },
  58. {
  59. "pagePath": "pages/order/order",
  60. "text": "订单",
  61. "iconPath": "static/tabbar/order.png",
  62. "selectedIconPath": "static/tabbar/order-active.png"
  63. },
  64. {
  65. "pagePath": "pages/income/income",
  66. "text": "收入",
  67. "iconPath": "static/tabbar/income.png",
  68. "selectedIconPath": "static/tabbar/income-active.png"
  69. },
  70. {
  71. "pagePath": "pages/my/my",
  72. "text": "我的",
  73. "iconPath": "static/tabbar/my.png",
  74. "selectedIconPath": "static/tabbar/my-active.png"
  75. }
  76. ]
  77. },
  78. "sitemapLocation": "sitemap.json",
  79. "requiredPrivateInfos":[
  80. "getLocation",
  81. "chooseLocation"
  82. ],
  83. "permission": {
  84. "scope.userLocation": {
  85. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  86. }
  87. }
  88. }