1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- export default {
- pages: [
- 'pages/index/index',
- 'pages/bookrack/index',
- 'pages/classify/index',
- 'pages/my/index',
- 'pages/book/bookDetails/index',
-
- 'pages/vipCore/index',
-
- 'pages/my/aboutUs/index',
- 'pages/my/contactService/index',
- 'pages/book/bookArticle/index',
-
- 'pages/indexMore/index',
-
- ],
- window: {
- backgroundTextStyle: 'dark',
- navigationBarBackgroundColor: '#fff',
- navigationBarTitleText: 'WeChat',
- navigationBarTextStyle: 'black',
-
- },
- tabBar: {
- color: '#000',
- selectedColor: '#ff0000',
- position: 'bottom',
- borderStyle: 'white',
- list: [
- {
- text: '书架',
- pagePath: 'pages/bookrack/index',
- iconPath: './icon/sj_1.png',
- selectedIconPath: './icon/sj_2.png',
- },
- {
- text: '书城',
- pagePath: 'pages/index/index',
- iconPath: './icon/sc_1.png',
- selectedIconPath: './icon/sc_2.png',
- },
- {
- text: '分类',
- pagePath: 'pages/classify/index',
- iconPath: './icon/fl_1.png',
- selectedIconPath: './icon/fl_2.png',
- },
- {
- text: '我的',
- pagePath: 'pages/my/index',
- iconPath: './icon/wd_1.png',
- selectedIconPath: './icon/wd_2.png',
- },
- ]
- },
- }
|