1234567891011121314151617181920 |
- export default {
- pages: [
- 'pages/index/index',
- 'pages/test/index'
- ],
- window: {
- backgroundTextStyle: 'light',
- navigationBarBackgroundColor: '#fff',
- navigationBarTitleText: 'WeChat',
- navigationBarTextStyle: 'black'
- },
- useExtendedLib: {
- weui: true,
- },
- permission: {
- 'scope.userLocation': {
- desc: '您的位置信息将方便您更好的小程序体验'
- }
- }
- }
|