Files
Driver-program/src/app.config.js
2026-03-11 18:34:19 +08:00

53 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default {
pages: [
'pages/index/index',
'pages/vehicle/index',
'pages/statistics/index',
'pages/history/index',
'pages/transport/index',
'pages/profile/index',
'pages/login/index',
'pages/register/index',
'pages/password/index',
'pages/realname/index'
],
tabBar: {
color: '#999999',
selectedColor: '#1976d2',
backgroundColor: '#ffffff',
borderStyle: 'white',
list: [ // TabBar 列表最少2项最多5项
{
pagePath: 'pages/index/index',
text: '首页',
iconPath: "assets/images/shouye.png",
selectedIconPath: "assets/images/shouye_active.png"
},
{
pagePath: 'pages/statistics/index',
text: '统计',
iconPath: "assets/images/tongji.png",
selectedIconPath: "assets/images/tongji_active.png"
},
{
pagePath: 'pages/profile/index',
text: '我的',
iconPath: "assets/images/wode.png",
selectedIconPath: "assets/images/wode_active.png"
}
],
},
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#fff',
navigationBarTitleText: 'WeChat',
navigationBarTextStyle: 'black'
},
permission: {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
}
}