33 lines
662 B
TypeScript
33 lines
662 B
TypeScript
export default defineAppConfig({
|
|
pages: [
|
|
'pages/index/index',
|
|
'pages/repair/repair',
|
|
'pages/user/user',
|
|
'pages/user/inform/inform',
|
|
'pages/user/settings/settings',
|
|
],
|
|
window: {
|
|
backgroundTextStyle: 'light',
|
|
navigationBarBackgroundColor: '#fff',
|
|
navigationBarTitleText: 'EVA Notify',
|
|
navigationBarTextStyle: 'black',
|
|
},
|
|
tabBar: {
|
|
custom: true,
|
|
list: [
|
|
{
|
|
pagePath: 'pages/index/index',
|
|
text: '主页',
|
|
},
|
|
{
|
|
pagePath: 'pages/repair/repair',
|
|
text: '维修',
|
|
},
|
|
{
|
|
pagePath: 'pages/user/user',
|
|
text: '我的',
|
|
},
|
|
],
|
|
},
|
|
});
|