36 lines
830 B
TypeScript
36 lines
830 B
TypeScript
export default defineAppConfig({
|
|
pages: [
|
|
'pages/list/index',
|
|
// 'pages/userInfo/myself/index',
|
|
'pages/login/index/index',
|
|
'pages/login/verification/index',
|
|
'pages/login/terms/index',
|
|
'pages/publishBall/index',
|
|
// 'pages/mapDisplay/index',
|
|
'pages/detail/index',
|
|
'pages/message/index',
|
|
'pages/personal/index',
|
|
'pages/orderCheck/index',
|
|
],
|
|
window: {
|
|
backgroundTextStyle: 'light',
|
|
navigationBarBackgroundColor: '#fff',
|
|
navigationBarTextStyle: 'black'
|
|
},
|
|
permission: {
|
|
'scope.userLocation': {
|
|
desc: '你的位置信息将用于小程序位置接口的效果展示'
|
|
}
|
|
},
|
|
requiredPrivateInfos: [
|
|
'getLocation',
|
|
'chooseLocation'
|
|
],
|
|
plugins: {
|
|
chooseLocation: {
|
|
version: "1.0.12",
|
|
provider: "wx76a9a06e5b4e693e"
|
|
}
|
|
}
|
|
})
|