app.config.js 414B

1234567891011121314151617181920
  1. export default {
  2. pages: [
  3. 'pages/index/index',
  4. 'pages/test/index'
  5. ],
  6. window: {
  7. backgroundTextStyle: 'light',
  8. navigationBarBackgroundColor: '#fff',
  9. navigationBarTitleText: 'WeChat',
  10. navigationBarTextStyle: 'black'
  11. },
  12. useExtendedLib: {
  13. weui: true,
  14. },
  15. permission: {
  16. 'scope.userLocation': {
  17. desc: '您的位置信息将方便您更好的小程序体验'
  18. }
  19. }
  20. }