29 lines
778 B
TypeScript
29 lines
778 B
TypeScript
export default defineAppConfig({
|
|
pages: [
|
|
'pages/home/index',
|
|
'pages/destinations/index',
|
|
'pages/destination/index',
|
|
'pages/meetups/index',
|
|
'pages/mine/index',
|
|
],
|
|
window: {
|
|
backgroundTextStyle: 'light',
|
|
navigationBarBackgroundColor: '#0c0b12',
|
|
navigationBarTitleText: 'nomadro',
|
|
navigationBarTextStyle: 'white',
|
|
backgroundColor: '#0c0b12',
|
|
},
|
|
tabBar: {
|
|
color: '#8a8694',
|
|
selectedColor: '#f0c674',
|
|
backgroundColor: '#12111a',
|
|
borderStyle: 'black',
|
|
list: [
|
|
{ pagePath: 'pages/home/index', text: '首页' },
|
|
{ pagePath: 'pages/destinations/index', text: '目的地' },
|
|
{ pagePath: 'pages/meetups/index', text: '活动' },
|
|
{ pagePath: 'pages/mine/index', text: '我的' },
|
|
],
|
|
},
|
|
})
|