Files
mini-programs/src/app.config.ts
2025-09-07 13:31:47 +08:00

45 lines
1.1 KiB
TypeScript

export default defineAppConfig({
pages: [
'pages/login/index/index',
'pages/login/verification/index',
'pages/login/terms/index',
'pages/list/index', // 列表页
'pages/search/index', // 搜索页
'pages/searchResult/index', // 搜索结果页面
'pages/publishBall/index',
'pages/detail/index',
'pages/message/index',
'pages/orderCheck/index',
'pages/userInfo/myself/index', // 个人中心
'pages/userInfo/edit/index', // 个人中心
'pages/userInfo/favorites/index', // 个人中心
'pages/userInfo/orders/index', // 个人中心
// 'pages/mapDisplay/index',
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#fff',
navigationBarTextStyle: 'black'
},
permission: {
'scope.userLocation': {
desc: '你的位置信息将用于小程序位置接口的效果展示'
}
},
requiredPrivateInfos: [
'getLocation',
'chooseLocation'
],
plugins: {
chooseLocation: {
version: "1.0.12",
provider: "wx76a9a06e5b4e693e"
}
}
})