2026-08-23 22:32:39 +08:00
|
|
|
export default {
|
|
|
|
|
pages: [
|
|
|
|
|
'pages/index/index',
|
|
|
|
|
'pages/booking/index',
|
|
|
|
|
'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',
|
|
|
|
|
'pages/scan/index'
|
2026-08-23 22:32:39 +08:00
|
|
|
],
|
|
|
|
|
window: {
|
|
|
|
|
backgroundTextStyle: 'light',
|
|
|
|
|
navigationBarBackgroundColor: '#05060d', // 与页面背景一致,避免导航栏与页面标题间露出背景缝隙
|
|
|
|
|
navigationBarTitleText: '云超服OPC · 为进化而设计',
|
|
|
|
|
navigationBarTextStyle: 'white',
|
|
|
|
|
backgroundColor: '#05060d'
|
|
|
|
|
},
|
|
|
|
|
tabBar: {
|
|
|
|
|
custom: true,
|
|
|
|
|
color: '#8a8a93',
|
|
|
|
|
selectedColor: '#ffd28a',
|
|
|
|
|
backgroundColor: '#000000',
|
|
|
|
|
borderStyle: 'black',
|
|
|
|
|
list: [
|
|
|
|
|
{ pagePath: 'pages/booking/index', text: '活动' },
|
|
|
|
|
{ pagePath: 'pages/test/index', text: '测评' },
|
|
|
|
|
{ pagePath: 'pages/index/index', text: '首页' },
|
|
|
|
|
{ pagePath: 'pages/policy/index', text: '政策' },
|
|
|
|
|
// { pagePath: 'pages/plan/index', text: '流程' },
|
|
|
|
|
{ pagePath: 'pages/mine/index', text: '我的' }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
};
|