48 lines
1.0 KiB
TypeScript
48 lines
1.0 KiB
TypeScript
export default defineAppConfig({
|
|
pages: [
|
|
'pages/index/index',
|
|
'pages/tasks/index',
|
|
'pages/task-detail/index',
|
|
'pages/publish-article/index',
|
|
'pages/publish-express/index',
|
|
'pages/publish-secondhand/index',
|
|
'pages/chat/index',
|
|
'pages/system-messages/index',
|
|
'pages/product-detail/index',
|
|
'pages/messages/index',
|
|
'pages/profile/index',
|
|
'pages/article/index',
|
|
],
|
|
window: {
|
|
backgroundTextStyle: 'light',
|
|
navigationBarBackgroundColor: '#fff',
|
|
navigationBarTitleText: 'WeChat',
|
|
navigationBarTextStyle: 'black',
|
|
},
|
|
tabBar: {
|
|
custom: true,
|
|
color: '#969799',
|
|
selectedColor: '#1989fa',
|
|
backgroundColor: '#ffffff',
|
|
list: [
|
|
{
|
|
pagePath: 'pages/index/index',
|
|
text: '首页',
|
|
},
|
|
{
|
|
pagePath: 'pages/tasks/index',
|
|
text: '校园任务',
|
|
},
|
|
{
|
|
pagePath: 'pages/messages/index',
|
|
text: '消息',
|
|
},
|
|
{
|
|
pagePath: 'pages/profile/index',
|
|
text: '我的',
|
|
},
|
|
],
|
|
},
|
|
animation: false,
|
|
})
|