Files
training/miniprogram/src/app.config.js
T

36 lines
1.1 KiB
JavaScript
Raw Normal View History

export default {
pages: [
'pages/index/index',
'pages/booking/index',
'pages/test/index',
'pages/policy/index',
'pages/plan/index',
'pages/survey/index',
'pages/mine/index',
'pages/event-detail/index',
'pages/scan/index'
],
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: '我的' }
]
}
};