|
|
|
@@ -1,11 +1,46 @@ |
|
|
|
export default defineAppConfig({ |
|
|
|
pages: [ |
|
|
|
'pages/index/index' |
|
|
|
'pages/index/index', |
|
|
|
'pages/contact/index', |
|
|
|
'pages/invite/index', |
|
|
|
'pages/settings/index' |
|
|
|
], |
|
|
|
window: { |
|
|
|
backgroundTextStyle: 'light', |
|
|
|
navigationBarBackgroundColor: '#fff', |
|
|
|
navigationBarTitleText: 'WeChat', |
|
|
|
navigationBarTextStyle: 'black' |
|
|
|
}, |
|
|
|
tabBar: { |
|
|
|
custom: false, |
|
|
|
color: '#797979', |
|
|
|
selectedColor: '#397EF5', |
|
|
|
backgroundColor: '#ffffff', |
|
|
|
list: [ |
|
|
|
{ |
|
|
|
pagePath: 'pages/index/index', |
|
|
|
selectedIconPath: 'images/bell-solid-397ef5.png', |
|
|
|
iconPath: 'images/bell-regular-797979.png', |
|
|
|
text: '通知' |
|
|
|
}, |
|
|
|
{ |
|
|
|
pagePath: 'pages/contact/index', |
|
|
|
selectedIconPath: 'images/calendar-plus-solid-397ef5.png', |
|
|
|
iconPath: 'images/calendar-plus-regular-797979.png', |
|
|
|
text: '新邀约' |
|
|
|
}, |
|
|
|
{ |
|
|
|
pagePath: 'pages/invite/index', |
|
|
|
selectedIconPath: 'images/address-book-solid-397ef5.png', |
|
|
|
iconPath: 'images/address-book-regular-797979.png', |
|
|
|
text: '通讯录' |
|
|
|
}, |
|
|
|
{ |
|
|
|
pagePath: 'pages/settings/index', |
|
|
|
selectedIconPath: 'images/user-solid-397ef5.png', |
|
|
|
iconPath: 'images/user-regular-797979.png', |
|
|
|
text: '个人中心' |
|
|
|
} |
|
|
|
] |
|
|
|
} |
|
|
|
}) |