2026-08-23 22:32:39 +08:00
|
|
|
export default {
|
|
|
|
|
pages: [
|
|
|
|
|
'pages/booking/index',
|
2026-08-27 16:11:39 +08:00
|
|
|
'pages/index/index',
|
2026-08-23 22:32:39 +08:00
|
|
|
'pages/test/index',
|
|
|
|
|
'pages/policy/index',
|
|
|
|
|
'pages/plan/index',
|
|
|
|
|
'pages/survey/index',
|
|
|
|
|
'pages/mine/index',
|
2026-08-25 18:43:07 +08:00
|
|
|
'pages/event-detail/index',
|
2026-08-26 12:00:09 +08:00
|
|
|
'pages/scan/index',
|
|
|
|
|
'pages/park-apply/index',
|
2026-08-26 19:37:01 +08:00
|
|
|
'pages/cert-apply/index',
|
|
|
|
|
'pages/park-transfer/index',
|
2026-08-27 14:08:47 +08:00
|
|
|
'pages/content/index',
|
|
|
|
|
'pages/content-detail/index',
|
2026-08-27 19:18:22 +08:00
|
|
|
'pages/tasks/index',
|
|
|
|
|
'pages/task-detail/index',
|
2026-08-26 12:00:09 +08:00
|
|
|
'pages/scan-login/index'
|
2026-08-23 22:32:39 +08:00
|
|
|
],
|
|
|
|
|
window: {
|
|
|
|
|
backgroundTextStyle: 'light',
|
2026-08-27 16:00:54 +08:00
|
|
|
navigationBarBackgroundColor: '#f7f9ff', // Soft UI 浅色,避免导航栏与页面标题间露出背景缝隙
|
2026-08-23 22:32:39 +08:00
|
|
|
navigationBarTitleText: '云超服OPC · 为进化而设计',
|
2026-08-27 16:00:54 +08:00
|
|
|
navigationBarTextStyle: 'black',
|
|
|
|
|
backgroundColor: '#f7f9ff'
|
2026-08-23 22:32:39 +08:00
|
|
|
},
|
|
|
|
|
tabBar: {
|
|
|
|
|
custom: true,
|
|
|
|
|
color: '#8a8a93',
|
2026-08-27 16:11:39 +08:00
|
|
|
selectedColor: '#6284ff',
|
|
|
|
|
backgroundColor: '#ffffff',
|
|
|
|
|
borderStyle: 'white',
|
2026-08-23 22:32:39 +08:00
|
|
|
list: [
|
2026-08-27 16:37:29 +08:00
|
|
|
{ pagePath: 'pages/booking/index', text: '活动' },
|
2026-08-23 22:32:39 +08:00
|
|
|
{ pagePath: 'pages/test/index', text: '测评' },
|
2026-08-27 16:37:29 +08:00
|
|
|
{ pagePath: 'pages/index/index', text: '首页' },
|
|
|
|
|
{ pagePath: 'pages/content/index', text: '资讯' },
|
|
|
|
|
{ pagePath: 'pages/mine/index', text: '我的' }
|
2026-08-23 22:32:39 +08:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
};
|