|
- export default defineAppConfig({
- pages: [
- 'pages/index/index',
- 'pages/contact/index',
- 'pages/contact-new/index',
- 'pages/contact-edit/index',
- 'pages/notifications/index',
- 'pages/settings/index',
- 'pages/login/index',
- 'pages/web-view/index',
- 'pages/contact-pass-records/index',
- 'pages/contact-edit-logs/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/calendar-plus-solid-397ef5.png',
- iconPath: 'images/calendar-plus-regular-797979.png',
- text: '邀约'
- },
- {
- pagePath: 'pages/notifications/index',
- selectedIconPath: 'images/bell-solid-397ef5.png',
- iconPath: 'images/bell-regular-797979.png',
- text: '通知'
- },
- {
- pagePath: 'pages/contact/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: '个人中心'
- }
- ]
- }
- })
|