28 lines
787 B
JavaScript
28 lines
787 B
JavaScript
export default defineAppConfig({
|
|
pages: [
|
|
'pages/index/index',
|
|
'pages/index/componments/KeywordJoin/index',
|
|
'pages/index/componments/NomadbookPage/index',
|
|
|
|
'pages/my/index',
|
|
'pages/my/componments/Log/index',
|
|
'pages/my/componments/Quesion/index',
|
|
|
|
],
|
|
permission: {
|
|
"scope.userLocation": {
|
|
desc: "你的位置信息将用于小程序位置接口的效果展示", // 高速公路行驶持续后台定位
|
|
},
|
|
},
|
|
requiredPrivateInfos: ["getLocation", "chooseLocation",'chooseAddress'],
|
|
window: {
|
|
backgroundTextStyle: 'light',
|
|
navigationBarBackgroundColor: '#fff',
|
|
navigationBarTitleText: 'WeChat',
|
|
navigationBarTextStyle: 'black'
|
|
},
|
|
// 设置后,空对象代表可以使用小程序原生组件
|
|
usingComponents: {
|
|
}
|
|
})
|