1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "pages": [
- "pages/index/index",
- "pages/login/login",
- "pages/privacy/privacy",
- "pages/home/index",
- "pages/contacts/index",
- "pages/discover/index",
- "pages/me/index"
- ],
- "window": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#999",
- "selectedColor": "#07c160",
- "backgroundColor": "#fff",
- "borderStyle": "black",
- "list": [
- {
- "pagePath": "pages/home/index",
- "iconPath": "static/tab_home.png",
- "selectedIconPath": "static/tab_home_active.png",
- "text": "微信"
- },
- {
- "pagePath": "pages/contacts/index",
- "iconPath": "static/tab_contacts.png",
- "selectedIconPath": "static/tab_contacts_active.png",
- "text": "通讯录"
- },
- {
- "pagePath": "pages/discover/index",
- "iconPath": "static/tab_discover.png",
- "selectedIconPath": "static/tab_discover_active.png",
- "text": "发现"
- },
- {
- "pagePath": "pages/me/index",
- "iconPath": "static/tab_me.png",
- "selectedIconPath": "static/tab_me_active.png",
- "text": "我"
- }
- ]
- },
- "usingComponents": {}
- }
|