EVA-Notify/src/app.config.ts

27 lines
577 B
TypeScript

export default defineAppConfig({
pages: ['pages/index/index', 'pages/repair/repair', 'pages/user/user'],
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: '我的',
},
],
},
});