app.json 471 B

123456789101112131415161718192021
  1. {
  2. "pages": [
  3. "pages/login/index",
  4. "pages/home/index"
  5. ],
  6. "window": {
  7. "navigationBarTextStyle": "black",
  8. "navigationBarTitleText": "uni-app",
  9. "navigationBarBackgroundColor": "#F8F8F8",
  10. "backgroundColor": "#F8F8F8"
  11. },
  12. "permission": {
  13. "scope.userInfo": {
  14. "desc": "你的个人信息将用于小程序登录和个性化服务"
  15. },
  16. "scope.login": {
  17. "desc": "获取你的登录凭证"
  18. }
  19. },
  20. "usingComponents": {}
  21. }